File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -58,13 +58,12 @@ public override bool VisitDeclarationContext(DeclarationContext context)
5858 return false ;
5959
6060 DeclarationContext currentContext = context ;
61- int parents = 0 ;
61+ int order = - 1 ;
6262 while ( currentContext != null )
6363 {
64- parents ++ ;
64+ order ++ ;
6565 currentContext = currentContext . Namespace ;
6666 }
67- int order = parents % 2 ;
6867 CheckChildrenNames ( context . Declarations , ref order ) ;
6968
7069 var @class = context as Class ;
Original file line number Diff line number Diff line change @@ -1311,6 +1311,12 @@ struct {
13111311 struct {
13121312 struct {
13131313 int (*forIntegers)(int b, short s, unsigned int i);
1314+ struct {
1315+ int i;
1316+ } APIHost;
1317+ struct {
1318+ int i;
1319+ } Method;
13141320 } example;
13151321 } root;
13161322} kotlin;
You can’t perform that action at this time.
0 commit comments