Skip to content

Commit 276cb58

Browse files
committed
Accept baselines with new build system
1 parent d783355 commit 276cb58

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ declare namespace ts {
422422
FirstJSDocNode = 288,
423423
LastJSDocNode = 310,
424424
FirstJSDocTagNode = 299,
425-
LastJSDocTagNode = 310
425+
LastJSDocTagNode = 310,
426426
}
427427
enum NodeFlags {
428428
None = 0,
@@ -451,7 +451,7 @@ declare namespace ts {
451451
ReachabilityCheckFlags = 384,
452452
ReachabilityAndEmitFlags = 1408,
453453
ContextFlags = 12679168,
454-
TypeExcludesFlags = 20480
454+
TypeExcludesFlags = 20480,
455455
}
456456
enum ModifierFlags {
457457
None = 0,
@@ -1008,7 +1008,7 @@ declare namespace ts {
10081008
Octal = 32,
10091009
HexSpecifier = 64,
10101010
BinarySpecifier = 128,
1011-
OctalSpecifier = 256
1011+
OctalSpecifier = 256,
10121012
}
10131013
interface NumericLiteral extends LiteralExpression {
10141014
kind: SyntaxKind.NumericLiteral;
@@ -2061,7 +2061,7 @@ declare namespace ts {
20612061
WriteTypeParametersOrArguments = 1,
20622062
UseOnlyExternalAliasing = 2,
20632063
AllowAnyNodeKind = 4,
2064-
UseAliasDefinedOutsideCurrentScope = 8
2064+
UseAliasDefinedOutsideCurrentScope = 8,
20652065
}
20662066
enum TypePredicateKind {
20672067
This = 0,
@@ -2139,7 +2139,7 @@ declare namespace ts {
21392139
ExportHasLocal = 944,
21402140
BlockScoped = 418,
21412141
PropertyOrAccessor = 98308,
2142-
ClassMember = 106500
2142+
ClassMember = 106500,
21432143
}
21442144
interface Symbol {
21452145
flags: SymbolFlags;
@@ -2247,7 +2247,7 @@ declare namespace ts {
22472247
Instantiable = 63176704,
22482248
StructuredOrInstantiable = 66846720,
22492249
Narrowable = 133970943,
2250-
NotUnionOrUnit = 67637251
2250+
NotUnionOrUnit = 67637251,
22512251
}
22522252
type DestructuringPattern = BindingPattern | ObjectLiteralExpression | ArrayLiteralExpression;
22532253
interface Type {
@@ -2294,7 +2294,7 @@ declare namespace ts {
22942294
MarkerType = 8192,
22952295
JSLiteral = 16384,
22962296
FreshLiteral = 32768,
2297-
ClassOrInterface = 3
2297+
ClassOrInterface = 3,
22982298
}
22992299
interface ObjectType extends Type {
23002300
objectFlags: ObjectFlags;
@@ -2794,7 +2794,7 @@ declare namespace ts {
27942794
NoHoisting = 2097152,
27952795
HasEndOfDeclarationMarker = 4194304,
27962796
Iterator = 8388608,
2797-
NoAsciiEscaping = 16777216
2797+
NoAsciiEscaping = 16777216,
27982798
}
27992799
interface EmitHelper {
28002800
readonly name: string;

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ declare namespace ts {
422422
FirstJSDocNode = 288,
423423
LastJSDocNode = 310,
424424
FirstJSDocTagNode = 299,
425-
LastJSDocTagNode = 310
425+
LastJSDocTagNode = 310,
426426
}
427427
enum NodeFlags {
428428
None = 0,
@@ -451,7 +451,7 @@ declare namespace ts {
451451
ReachabilityCheckFlags = 384,
452452
ReachabilityAndEmitFlags = 1408,
453453
ContextFlags = 12679168,
454-
TypeExcludesFlags = 20480
454+
TypeExcludesFlags = 20480,
455455
}
456456
enum ModifierFlags {
457457
None = 0,
@@ -1008,7 +1008,7 @@ declare namespace ts {
10081008
Octal = 32,
10091009
HexSpecifier = 64,
10101010
BinarySpecifier = 128,
1011-
OctalSpecifier = 256
1011+
OctalSpecifier = 256,
10121012
}
10131013
interface NumericLiteral extends LiteralExpression {
10141014
kind: SyntaxKind.NumericLiteral;
@@ -2061,7 +2061,7 @@ declare namespace ts {
20612061
WriteTypeParametersOrArguments = 1,
20622062
UseOnlyExternalAliasing = 2,
20632063
AllowAnyNodeKind = 4,
2064-
UseAliasDefinedOutsideCurrentScope = 8
2064+
UseAliasDefinedOutsideCurrentScope = 8,
20652065
}
20662066
enum TypePredicateKind {
20672067
This = 0,
@@ -2139,7 +2139,7 @@ declare namespace ts {
21392139
ExportHasLocal = 944,
21402140
BlockScoped = 418,
21412141
PropertyOrAccessor = 98308,
2142-
ClassMember = 106500
2142+
ClassMember = 106500,
21432143
}
21442144
interface Symbol {
21452145
flags: SymbolFlags;
@@ -2247,7 +2247,7 @@ declare namespace ts {
22472247
Instantiable = 63176704,
22482248
StructuredOrInstantiable = 66846720,
22492249
Narrowable = 133970943,
2250-
NotUnionOrUnit = 67637251
2250+
NotUnionOrUnit = 67637251,
22512251
}
22522252
type DestructuringPattern = BindingPattern | ObjectLiteralExpression | ArrayLiteralExpression;
22532253
interface Type {
@@ -2294,7 +2294,7 @@ declare namespace ts {
22942294
MarkerType = 8192,
22952295
JSLiteral = 16384,
22962296
FreshLiteral = 32768,
2297-
ClassOrInterface = 3
2297+
ClassOrInterface = 3,
22982298
}
22992299
interface ObjectType extends Type {
23002300
objectFlags: ObjectFlags;
@@ -2794,7 +2794,7 @@ declare namespace ts {
27942794
NoHoisting = 2097152,
27952795
HasEndOfDeclarationMarker = 4194304,
27962796
Iterator = 8388608,
2797-
NoAsciiEscaping = 16777216
2797+
NoAsciiEscaping = 16777216,
27982798
}
27992799
interface EmitHelper {
28002800
readonly name: string;

0 commit comments

Comments
 (0)