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 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
} }
} }