1 instantiation of ParserContext
Microsoft.CodeAnalysis.Razor.Compiler (1)
Language\Legacy\RazorParser.cs (1)
28using var context = new ParserContext(source, Options, cancellationToken);
10 references to ParserContext
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)