17 references to Semicolon
Microsoft.AspNetCore.Razor.Language.Legacy.UnitTests (1)
Legacy\CSharpTokenizerOperatorsTest.cs (1)
192TestSingleToken(";", SyntaxKind.Semicolon);
Microsoft.AspNetCore.Razor.Language.UnitTests (2)
Legacy\CSharpTokenizerLiteralTest.cs (1)
394SyntaxFactory.Token(SyntaxKind.Semicolon, ";"));
Legacy\CSharpTokenizerOperatorsTest.cs (1)
190TestSingleToken(";", SyntaxKind.Semicolon);
Microsoft.CodeAnalysis.Razor.Compiler (14)
Language\Legacy\CSharpCodeParser.cs (8)
994token.Kind is not SyntaxKind.Semicolon and 1093else if (At(SyntaxKind.Semicolon)) 1571!At(SyntaxKind.Semicolon) && 1750if (At(SyntaxKind.Semicolon)) 1764else if (At(SyntaxKind.Semicolon)) 1822TryAccept(SyntaxKind.Semicolon); 2453if (TryParseCondition(builder) && TryAccept(SyntaxKind.Semicolon)) 2613hasExplicitSemicolon = TryAccept(SyntaxKind.Semicolon);
Language\Legacy\NativeCSharpLanguageCharacteristics.cs (1)
38{ SyntaxKind.Semicolon, ";" },
Language\Legacy\NativeCSharpTokenizer.cs (2)
135{ ';', () => SyntaxKind.Semicolon }, 253case SyntaxKind.Semicolon:
Language\Legacy\RoslynCSharpLanguageCharacteristics.cs (1)
38{ SyntaxKind.Semicolon, ";" },
Language\Legacy\RoslynCSharpTokenizer.cs (2)
180case SyntaxKind.Semicolon: 344(int)CSharpSyntaxKind.SemicolonToken => SyntaxKind.Semicolon,