Merge branch 'rel/vs15.5' into dev
This commit is contained in:
commit
b50ead28e2
|
|
@ -5,17 +5,19 @@ namespace Microsoft.AspNetCore.Razor.Language.Legacy
|
||||||
{
|
{
|
||||||
internal enum BlockKindInternal
|
internal enum BlockKindInternal
|
||||||
{
|
{
|
||||||
|
// We want this to match the values in BlockKind so that the values are maintained when casting.
|
||||||
|
|
||||||
// Code
|
// Code
|
||||||
Statement,
|
Statement = 0,
|
||||||
Directive,
|
Directive = 1,
|
||||||
Expression,
|
Expression = 3,
|
||||||
|
|
||||||
// Markup
|
// Markup
|
||||||
Markup,
|
Markup = 5,
|
||||||
Template,
|
Template = 7,
|
||||||
|
|
||||||
// Special
|
// Special
|
||||||
Comment,
|
Comment = 8,
|
||||||
Tag
|
Tag = 9
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue