@@ -381,12 +381,8 @@ namespace ts {
381381 Abstract = 1 << 7 , // Class/Method/ConstructSignature
382382 Async = 1 << 8 , // Property/Method/Function
383383 Default = 1 << 9 , // Function/Class (export default declaration)
384- MultiLine = 1 << 10 , // Multi-line array or object literal
385- Synthetic = 1 << 11 , // Synthetic node (for full fidelity)
386- DeclarationFile = 1 << 12 , // Node is a .d.ts file
387384 Let = 1 << 13 , // Variable declaration
388385 Const = 1 << 14 , // Variable declaration
389- OctalLiteral = 1 << 15 , // Octal numeric literal
390386 Namespace = 1 << 16 , // Namespace declaration
391387 ExportContext = 1 << 17 , // Export context (initialized by binding)
392388 ContainsThis = 1 << 18 , // Interface contains references to "this"
@@ -938,6 +934,7 @@ namespace ts {
938934 text : string ;
939935 isUnterminated ?: boolean ;
940936 hasExtendedUnicodeEscape ?: boolean ;
937+ isOctalLiteral ?: boolean ;
941938 }
942939
943940 // The text property of a LiteralExpression stores the interpreted value of the literal in text form. For a StringLiteral,
@@ -979,6 +976,7 @@ namespace ts {
979976 // @kind (SyntaxKind.ArrayLiteralExpression)
980977 export interface ArrayLiteralExpression extends PrimaryExpression {
981978 elements : NodeArray < Expression > ;
979+ multiLine ?: boolean ;
982980 }
983981
984982 // @kind (SyntaxKind.SpreadElementExpression)
@@ -990,6 +988,7 @@ namespace ts {
990988 // @kind (SyntaxKind.ObjectLiteralExpression)
991989 export interface ObjectLiteralExpression extends PrimaryExpression , Declaration {
992990 properties : NodeArray < ObjectLiteralElement > ;
991+ multiLine ?: boolean ;
993992 }
994993
995994 // @kind (SyntaxKind.PropertyAccessExpression)
@@ -1546,6 +1545,7 @@ namespace ts {
15461545 moduleName : string ;
15471546 referencedFiles : FileReference [ ] ;
15481547 languageVariant : LanguageVariant ;
1548+ isDeclarationFile : boolean ;
15491549
15501550 // this map is used by transpiler to supply alternative names for dependencies (i.e. in case of bundling)
15511551 /* @internal */
0 commit comments