Skip to content

Commit fa3ce9f

Browse files
authored
Fix build break (#19431)
1 parent 159a0a2 commit fa3ce9f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/compiler/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ namespace ts {
451451
/* @internal */
452452
PossiblyContainsDynamicImport = 1 << 19,
453453
JSDoc = 1 << 20, // If node was parsed inside jsdoc
454-
InWithStatement = 1 << 21, // If any ancestor of node was the `statement` of a WithStatement (not the `expression`)
454+
/* @internal */ InWithStatement = 1 << 21, // If any ancestor of node was the `statement` of a WithStatement (not the `expression`)
455455

456456
BlockScoped = Let | Const,
457457

tests/baselines/reference/api/tsserverlibrary.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ declare namespace ts {
408408
BlockScoped = 3,
409409
ReachabilityCheckFlags = 384,
410410
ReachabilityAndEmitFlags = 1408,
411-
ContextFlags = 96256,
411+
ContextFlags = 2193408,
412412
TypeExcludesFlags = 20480,
413413
}
414414
enum ModifierFlags {

tests/baselines/reference/api/typescript.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ declare namespace ts {
408408
BlockScoped = 3,
409409
ReachabilityCheckFlags = 384,
410410
ReachabilityAndEmitFlags = 1408,
411-
ContextFlags = 96256,
411+
ContextFlags = 2193408,
412412
TypeExcludesFlags = 20480,
413413
}
414414
enum ModifierFlags {

0 commit comments

Comments
 (0)