Fix build break (#19431)

This commit is contained in:
Wesley Wigham
2017-10-23 14:28:20 -07:00
committed by GitHub
parent 159a0a2197
commit fa3ce9fe6c
3 changed files with 3 additions and 3 deletions

View File

@@ -451,7 +451,7 @@ namespace ts {
/* @internal */
PossiblyContainsDynamicImport = 1 << 19,
JSDoc = 1 << 20, // If node was parsed inside jsdoc
InWithStatement = 1 << 21, // If any ancestor of node was the `statement` of a WithStatement (not the `expression`)
/* @internal */ InWithStatement = 1 << 21, // If any ancestor of node was the `statement` of a WithStatement (not the `expression`)
BlockScoped = Let | Const,