5 references to AllowRazorInAllCodeBlocks
Microsoft.AspNetCore.Razor.Language.UnitTests (2)
RazorParserOptionsTest.cs (2)
19
Assert.True(options.
AllowRazorInAllCodeBlocks
);
47
Assert.False(options.
AllowRazorInAllCodeBlocks
);
Microsoft.CodeAnalysis.Razor.Compiler (3)
Language\Legacy\CSharpCodeParser.cs (3)
1004
if ((!Context.Options.
AllowRazorInAllCodeBlocks
&& At(SyntaxKind.LeftBrace)) ||
1014
else if (Context.Options.
AllowRazorInAllCodeBlocks
&& At(SyntaxKind.LeftBrace))
1889
if (Context.Options.
AllowRazorInAllCodeBlocks
)