8 references to GetCachedToken
Microsoft.AspNetCore.Razor.Language.UnitTests (7)
Syntax\SyntaxTokenCacheTest.cs (7)
20var token = cache.GetCachedToken(SyntaxKind.Whitespace, "Hello world"); 35var token1 = cache.GetCachedToken(SyntaxKind.Whitespace, "Hello world"); 36var token2 = cache.GetCachedToken(SyntaxKind.Whitespace, "Hello world"); 49var token1 = cache.GetCachedToken(SyntaxKind.Whitespace, "Hello world"); 50var token2 = cache.GetCachedToken(SyntaxKind.Keyword, "Hello world"); 68var token1 = cache.GetCachedToken(SyntaxKind.Keyword, "Text1"); 69var token2 = cache.GetCachedToken(SyntaxKind.Keyword, "Text2");
Microsoft.CodeAnalysis.Razor.Compiler (1)
Language\Syntax\InternalSyntax\SyntaxFactory.cs (1)
14return SyntaxTokenCache.Instance.GetCachedToken(kind, content);