1 instantiation of ParserContext
Microsoft.CodeAnalysis.Razor.Compiler (1)
Language\Legacy\RazorParser.cs (1)
28
using var context = new
ParserContext
(source, Options, cancellationToken);
10 references to ParserContext
Microsoft.CodeAnalysis.Razor.Compiler (10)
Language\Legacy\CSharpCodeParser.cs (3)
118
public CSharpCodeParser(
ParserContext
context)
123
public CSharpCodeParser(ImmutableArray<DirectiveDescriptor> directives,
ParserContext
context)
228
ParserContext
context,
Language\Legacy\HtmlMarkupParser.cs (1)
29
public HtmlMarkupParser(
ParserContext
context)
Language\Legacy\ParserBase.cs (2)
8
internal abstract class ParserBase(
ParserContext
context)
10
public
ParserContext
Context { get; } = context;
Language\Legacy\ParserContext.ErrorScope.cs (2)
8
public readonly ref struct ErrorScope(
ParserContext
context)
10
private readonly
ParserContext
_context = context;
Language\Legacy\RazorParser.cs (1)
28
using
var
context = new ParserContext(source, Options, cancellationToken);
Language\Legacy\TokenizerBackedParser.cs (1)
47
protected TokenizerBackedParser(LanguageCharacteristics<TTokenizer> language,
ParserContext
context)