13 references to Dot
Microsoft.AspNetCore.Razor.Language.Legacy.UnitTests (1)
Legacy\CSharpTokenizerOperatorsTest.cs (1)
264
TestSingleToken(".", SyntaxKind.
Dot
);
Microsoft.AspNetCore.Razor.Language.UnitTests (1)
Legacy\CSharpTokenizerOperatorsTest.cs (1)
262
TestSingleToken(".", SyntaxKind.
Dot
);
Microsoft.CodeAnalysis.Razor.Compiler (11)
Language\Legacy\CSharpCodeParser.cs (5)
589
if (next.Kind == SyntaxKind.
Dot
)
622
if (next.Kind == SyntaxKind.
Dot
)
667
else if (At(SyntaxKind.
Dot
))
1972
if ((expectingDot && type == SyntaxKind.
Dot
) ||
2698
if (TryAccept(SyntaxKind.
Dot
))
Language\Legacy\NativeCSharpLanguageCharacteristics.cs (1)
33
{ SyntaxKind.
Dot
, "." },
Language\Legacy\NativeCSharpTokenizer.cs (2)
247
case SyntaxKind.
Dot
:
403
return Stay(Single(SyntaxKind.
Dot
));
Language\Legacy\RoslynCSharpLanguageCharacteristics.cs (1)
33
{ SyntaxKind.
Dot
, "." },
Language\Legacy\RoslynCSharpTokenizer.cs (2)
178
case SyntaxKind.
Dot
:
333
(int)CSharpSyntaxKind.DotToken => SyntaxKind.
Dot
,