diff --git a/src/compiler/types.ts b/src/compiler/types.ts index 5e09c792f91..60f9e0d0cef 100644 --- a/src/compiler/types.ts +++ b/src/compiler/types.ts @@ -904,6 +904,7 @@ namespace ts { text: string; isUnterminated?: boolean; hasExtendedUnicodeEscape?: boolean; + /* @internal */ isOctalLiteral?: boolean; } @@ -946,6 +947,7 @@ namespace ts { // @kind(SyntaxKind.ArrayLiteralExpression) export interface ArrayLiteralExpression extends PrimaryExpression { elements: NodeArray; + /* @internal */ multiLine?: boolean; } @@ -958,6 +960,7 @@ namespace ts { // @kind(SyntaxKind.ObjectLiteralExpression) export interface ObjectLiteralExpression extends PrimaryExpression, Declaration { properties: NodeArray; + /* @internal */ multiLine?: boolean; }