File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -1031,6 +1031,7 @@ module ts {
1031
1031
static none = "" ;
1032
1032
static publicMemberModifier = "public" ;
1033
1033
static privateMemberModifier = "private" ;
1034
+ static protectedMemberModifier = "protected" ;
1034
1035
static exportedModifier = "export" ;
1035
1036
static ambientModifier = "declare" ;
1036
1037
static staticModifier = "static" ;
@@ -2353,6 +2354,7 @@ module ts {
2353
2354
var result : string [ ] = [ ] ;
2354
2355
2355
2356
if ( flags & NodeFlags . Private ) result . push ( ScriptElementKindModifier . privateMemberModifier ) ;
2357
+ if ( flags & NodeFlags . Protected ) result . push ( ScriptElementKindModifier . protectedMemberModifier ) ;
2356
2358
if ( flags & NodeFlags . Public ) result . push ( ScriptElementKindModifier . publicMemberModifier ) ;
2357
2359
if ( flags & NodeFlags . Static ) result . push ( ScriptElementKindModifier . staticModifier ) ;
2358
2360
if ( flags & NodeFlags . Export ) result . push ( ScriptElementKindModifier . exportedModifier ) ;
You can’t perform that action at this time.
0 commit comments