Merge branch 'rel/vs15.5' into dev

This commit is contained in:
Ajay Bhargav Baaskaran 2017-10-04 17:00:03 -07:00
commit b50ead28e2
1 changed files with 9 additions and 7 deletions

View File

@ -5,17 +5,19 @@ namespace Microsoft.AspNetCore.Razor.Language.Legacy
{
internal enum BlockKindInternal
{
// We want this to match the values in BlockKind so that the values are maintained when casting.
// Code
Statement,
Directive,
Expression,
Statement = 0,
Directive = 1,
Expression = 3,
// Markup
Markup,
Template,
Markup = 5,
Template = 7,
// Special
Comment,
Tag
Comment = 8,
Tag = 9
}
}