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 {
10311031 static none = "" ;
10321032 static publicMemberModifier = "public" ;
10331033 static privateMemberModifier = "private" ;
1034+ static protectedMemberModifier = "protected" ;
10341035 static exportedModifier = "export" ;
10351036 static ambientModifier = "declare" ;
10361037 static staticModifier = "static" ;
@@ -2353,6 +2354,7 @@ module ts {
23532354 var result : string [ ] = [ ] ;
23542355
23552356 if ( flags & NodeFlags . Private ) result . push ( ScriptElementKindModifier . privateMemberModifier ) ;
2357+ if ( flags & NodeFlags . Protected ) result . push ( ScriptElementKindModifier . protectedMemberModifier ) ;
23562358 if ( flags & NodeFlags . Public ) result . push ( ScriptElementKindModifier . publicMemberModifier ) ;
23572359 if ( flags & NodeFlags . Static ) result . push ( ScriptElementKindModifier . staticModifier ) ;
23582360 if ( flags & NodeFlags . Export ) result . push ( ScriptElementKindModifier . exportedModifier ) ;
You can’t perform that action at this time.
0 commit comments