5 instantiations of ParserContext
Microsoft.AspNetCore.Razor.Language.UnitTests (3)
Legacy\CSharpCodeParserTest.cs (1)
217using var context = new ParserContext(source, options);
Legacy\HtmlMarkupParserTests.cs (1)
231var context = new ParserContext(source, options);
Legacy\TokenizerLookaheadTest.cs (1)
134var context = new ParserContext(source, options);
Microsoft.AspNetCore.Razor.Test.Common (1)
Language\Legacy\ParserTestBase.cs (1)
219using var context = new ParserContext(source, parseOptions);
Microsoft.CodeAnalysis.Razor.Compiler (1)
Language\Legacy\RazorParser.cs (1)
28using var context = new ParserContext(source, Options, cancellationToken);
16 references to ParserContext
Microsoft.AspNetCore.Razor.Language.UnitTests (5)
Legacy\CSharpCodeParserTest.cs (1)
217using var context = new ParserContext(source, options);
Legacy\HtmlMarkupParserTests.cs (2)
199public TestHtmlMarkupParser(ParserContext context) 231var context = new ParserContext(source, options);
Legacy\TokenizerLookaheadTest.cs (2)
134var context = new ParserContext(source, options); 207internal TestTokenizerBackedParser(LanguageCharacteristics<HtmlTokenizer> language, ParserContext context)
Microsoft.AspNetCore.Razor.Test.Common (1)
Language\Legacy\ParserTestBase.cs (1)
219using var context = new ParserContext(source, parseOptions);
Microsoft.CodeAnalysis.Razor.Compiler (10)
Language\Legacy\CSharpCodeParser.cs (3)
118public CSharpCodeParser(ParserContext context) 123public CSharpCodeParser(ImmutableArray<DirectiveDescriptor> directives, ParserContext context) 228ParserContext context,
Language\Legacy\HtmlMarkupParser.cs (1)
29public HtmlMarkupParser(ParserContext context)
Language\Legacy\ParserBase.cs (2)
8internal abstract class ParserBase(ParserContext context) 10public ParserContext Context { get; } = context;
Language\Legacy\ParserContext.ErrorScope.cs (2)
8public readonly ref struct ErrorScope(ParserContext context) 10private readonly ParserContext _context = context;
Language\Legacy\RazorParser.cs (1)
28using var context = new ParserContext(source, Options, cancellationToken);
Language\Legacy\TokenizerBackedParser.cs (1)
47protected TokenizerBackedParser(LanguageCharacteristics<TTokenizer> language, ParserContext context)