File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -1716,6 +1716,7 @@ public override void VisitArrayType(ArrayTypeSyntax node)
1716
1716
1717
1717
switch ( kind )
1718
1718
{
1719
+ case SyntaxKind . PredefinedType :
1719
1720
case SyntaxKind . IdentifierName :
1720
1721
{
1721
1722
JSSB . Append ( "Array" ) ;
@@ -1759,6 +1760,7 @@ public override void VisitArrayRankSpecifier(ArrayRankSpecifierSyntax node)
1759
1760
1760
1761
switch ( kind )
1761
1762
{
1763
+ case SyntaxKind . NumericLiteralExpression :
1762
1764
case SyntaxKind . DivideExpression :
1763
1765
Visit ( asNode ) ;
1764
1766
break ;
@@ -2750,6 +2752,8 @@ where e.IsKind(SyntaxKind.IdentifierToken)
2750
2752
return true ;
2751
2753
}
2752
2754
2755
+ //Todo? Delete this
2756
+ /*
2753
2757
DataFlowAnalysis _dfa = _Model.AnalyzeDataFlow(node);
2754
2758
2755
2759
if (_dfa.Succeeded == false)
@@ -2768,7 +2772,7 @@ where e.IsKind(SyntaxKind.IdentifierToken)
2768
2772
2769
2773
return true;
2770
2774
}
2771
- }
2775
+ }*/
2772
2776
}
2773
2777
}
2774
2778
}
You can’t perform that action at this time.
0 commit comments