10 references to Token
Microsoft.AspNetCore.App.Analyzers (8)
Infrastructure\EmbeddedSyntax\EmbeddedSyntaxNode.cs (3)
99var token = child.Token; 122if (child.Token.VirtualChars.Contains(virtualChar)) 173child.Token.WriteTo(sb);
Infrastructure\EmbeddedSyntax\EmbeddedSyntaxNodeOrToken.cs (1)
37public TSyntaxKind Kind => Node?.Kind ?? Token.Kind;
Infrastructure\RoutePattern\RoutePatternParser.cs (1)
325var token = child.Token;
RouteEmbeddedLanguage\RoutePatternClassifier.cs (1)
149AddClassification(child.Token, typeName);
RouteEmbeddedLanguage\RoutePatternCompletionProvider.cs (2)
296if (child.Token.VirtualChars.Contains(ch)) 298return (parent, child.Token);
Microsoft.AspNetCore.App.Analyzers.Test (2)
RouteEmbeddedLanguage\RoutePatternParserTests.cs (2)
298element.Add(child.IsNode ? NodeToElement(child.Node) : TokenToElement(child.Token)); 339CheckInvariants(child.Token, ref position, allChars);