Skip to content

Commit c086dc6

Browse files
committed
Accepting new baselines
1 parent 9af8ae4 commit c086dc6

8 files changed

+100
-96
lines changed

Diff for: tests/baselines/reference/APISample_compile.js

+10-9
Original file line numberDiff line numberDiff line change
@@ -313,15 +313,16 @@ declare module "typescript" {
313313
Private = 32,
314314
Protected = 64,
315315
Static = 128,
316-
MultiLine = 256,
317-
Synthetic = 512,
318-
DeclarationFile = 1024,
319-
Let = 2048,
320-
Const = 4096,
321-
OctalLiteral = 8192,
322-
Modifier = 243,
316+
Default = 256,
317+
MultiLine = 512,
318+
Synthetic = 1024,
319+
DeclarationFile = 2048,
320+
Let = 4096,
321+
Const = 8192,
322+
OctalLiteral = 16384,
323+
Modifier = 499,
323324
AccessibilityModifier = 112,
324-
BlockScoped = 6144,
325+
BlockScoped = 12288,
325326
}
326327
const enum ParserContextFlags {
327328
StrictMode = 1,
@@ -924,7 +925,7 @@ declare module "typescript" {
924925
errorModuleName?: string;
925926
}
926927
interface EmitResolver {
927-
getGeneratedNameForNode(node: ModuleDeclaration | EnumDeclaration | ImportDeclaration | ExportDeclaration): string;
928+
getGeneratedNameForNode(node: Node): string;
928929
getExpressionNameSubstitution(node: Identifier): string;
929930
hasExportDefaultValue(node: SourceFile): boolean;
930931
isReferencedImportDeclaration(node: Node): boolean;

Diff for: tests/baselines/reference/APISample_compile.types

+15-15
Original file line numberDiff line numberDiff line change
@@ -954,31 +954,34 @@ declare module "typescript" {
954954
Static = 128,
955955
>Static : NodeFlags
956956

957-
MultiLine = 256,
957+
Default = 256,
958+
>Default : NodeFlags
959+
960+
MultiLine = 512,
958961
>MultiLine : NodeFlags
959962

960-
Synthetic = 512,
963+
Synthetic = 1024,
961964
>Synthetic : NodeFlags
962965

963-
DeclarationFile = 1024,
966+
DeclarationFile = 2048,
964967
>DeclarationFile : NodeFlags
965968

966-
Let = 2048,
969+
Let = 4096,
967970
>Let : NodeFlags
968971

969-
Const = 4096,
972+
Const = 8192,
970973
>Const : NodeFlags
971974

972-
OctalLiteral = 8192,
975+
OctalLiteral = 16384,
973976
>OctalLiteral : NodeFlags
974977

975-
Modifier = 243,
978+
Modifier = 499,
976979
>Modifier : NodeFlags
977980

978981
AccessibilityModifier = 112,
979982
>AccessibilityModifier : NodeFlags
980983

981-
BlockScoped = 6144,
984+
BlockScoped = 12288,
982985
>BlockScoped : NodeFlags
983986
}
984987
const enum ParserContextFlags {
@@ -2954,13 +2957,10 @@ declare module "typescript" {
29542957
interface EmitResolver {
29552958
>EmitResolver : EmitResolver
29562959

2957-
getGeneratedNameForNode(node: ModuleDeclaration | EnumDeclaration | ImportDeclaration | ExportDeclaration): string;
2958-
>getGeneratedNameForNode : (node: EnumDeclaration | ModuleDeclaration | ImportDeclaration | ExportDeclaration) => string
2959-
>node : EnumDeclaration | ModuleDeclaration | ImportDeclaration | ExportDeclaration
2960-
>ModuleDeclaration : ModuleDeclaration
2961-
>EnumDeclaration : EnumDeclaration
2962-
>ImportDeclaration : ImportDeclaration
2963-
>ExportDeclaration : ExportDeclaration
2960+
getGeneratedNameForNode(node: Node): string;
2961+
>getGeneratedNameForNode : (node: Node) => string
2962+
>node : Node
2963+
>Node : Node
29642964

29652965
getExpressionNameSubstitution(node: Identifier): string;
29662966
>getExpressionNameSubstitution : (node: Identifier) => string

Diff for: tests/baselines/reference/APISample_linter.js

+10-9
Original file line numberDiff line numberDiff line change
@@ -344,15 +344,16 @@ declare module "typescript" {
344344
Private = 32,
345345
Protected = 64,
346346
Static = 128,
347-
MultiLine = 256,
348-
Synthetic = 512,
349-
DeclarationFile = 1024,
350-
Let = 2048,
351-
Const = 4096,
352-
OctalLiteral = 8192,
353-
Modifier = 243,
347+
Default = 256,
348+
MultiLine = 512,
349+
Synthetic = 1024,
350+
DeclarationFile = 2048,
351+
Let = 4096,
352+
Const = 8192,
353+
OctalLiteral = 16384,
354+
Modifier = 499,
354355
AccessibilityModifier = 112,
355-
BlockScoped = 6144,
356+
BlockScoped = 12288,
356357
}
357358
const enum ParserContextFlags {
358359
StrictMode = 1,
@@ -955,7 +956,7 @@ declare module "typescript" {
955956
errorModuleName?: string;
956957
}
957958
interface EmitResolver {
958-
getGeneratedNameForNode(node: ModuleDeclaration | EnumDeclaration | ImportDeclaration | ExportDeclaration): string;
959+
getGeneratedNameForNode(node: Node): string;
959960
getExpressionNameSubstitution(node: Identifier): string;
960961
hasExportDefaultValue(node: SourceFile): boolean;
961962
isReferencedImportDeclaration(node: Node): boolean;

Diff for: tests/baselines/reference/APISample_linter.types

+15-15
Original file line numberDiff line numberDiff line change
@@ -1100,31 +1100,34 @@ declare module "typescript" {
11001100
Static = 128,
11011101
>Static : NodeFlags
11021102

1103-
MultiLine = 256,
1103+
Default = 256,
1104+
>Default : NodeFlags
1105+
1106+
MultiLine = 512,
11041107
>MultiLine : NodeFlags
11051108

1106-
Synthetic = 512,
1109+
Synthetic = 1024,
11071110
>Synthetic : NodeFlags
11081111

1109-
DeclarationFile = 1024,
1112+
DeclarationFile = 2048,
11101113
>DeclarationFile : NodeFlags
11111114

1112-
Let = 2048,
1115+
Let = 4096,
11131116
>Let : NodeFlags
11141117

1115-
Const = 4096,
1118+
Const = 8192,
11161119
>Const : NodeFlags
11171120

1118-
OctalLiteral = 8192,
1121+
OctalLiteral = 16384,
11191122
>OctalLiteral : NodeFlags
11201123

1121-
Modifier = 243,
1124+
Modifier = 499,
11221125
>Modifier : NodeFlags
11231126

11241127
AccessibilityModifier = 112,
11251128
>AccessibilityModifier : NodeFlags
11261129

1127-
BlockScoped = 6144,
1130+
BlockScoped = 12288,
11281131
>BlockScoped : NodeFlags
11291132
}
11301133
const enum ParserContextFlags {
@@ -3100,13 +3103,10 @@ declare module "typescript" {
31003103
interface EmitResolver {
31013104
>EmitResolver : EmitResolver
31023105

3103-
getGeneratedNameForNode(node: ModuleDeclaration | EnumDeclaration | ImportDeclaration | ExportDeclaration): string;
3104-
>getGeneratedNameForNode : (node: EnumDeclaration | ModuleDeclaration | ImportDeclaration | ExportDeclaration) => string
3105-
>node : EnumDeclaration | ModuleDeclaration | ImportDeclaration | ExportDeclaration
3106-
>ModuleDeclaration : ModuleDeclaration
3107-
>EnumDeclaration : EnumDeclaration
3108-
>ImportDeclaration : ImportDeclaration
3109-
>ExportDeclaration : ExportDeclaration
3106+
getGeneratedNameForNode(node: Node): string;
3107+
>getGeneratedNameForNode : (node: Node) => string
3108+
>node : Node
3109+
>Node : Node
31103110

31113111
getExpressionNameSubstitution(node: Identifier): string;
31123112
>getExpressionNameSubstitution : (node: Identifier) => string

Diff for: tests/baselines/reference/APISample_transform.js

+10-9
Original file line numberDiff line numberDiff line change
@@ -345,15 +345,16 @@ declare module "typescript" {
345345
Private = 32,
346346
Protected = 64,
347347
Static = 128,
348-
MultiLine = 256,
349-
Synthetic = 512,
350-
DeclarationFile = 1024,
351-
Let = 2048,
352-
Const = 4096,
353-
OctalLiteral = 8192,
354-
Modifier = 243,
348+
Default = 256,
349+
MultiLine = 512,
350+
Synthetic = 1024,
351+
DeclarationFile = 2048,
352+
Let = 4096,
353+
Const = 8192,
354+
OctalLiteral = 16384,
355+
Modifier = 499,
355356
AccessibilityModifier = 112,
356-
BlockScoped = 6144,
357+
BlockScoped = 12288,
357358
}
358359
const enum ParserContextFlags {
359360
StrictMode = 1,
@@ -956,7 +957,7 @@ declare module "typescript" {
956957
errorModuleName?: string;
957958
}
958959
interface EmitResolver {
959-
getGeneratedNameForNode(node: ModuleDeclaration | EnumDeclaration | ImportDeclaration | ExportDeclaration): string;
960+
getGeneratedNameForNode(node: Node): string;
960961
getExpressionNameSubstitution(node: Identifier): string;
961962
hasExportDefaultValue(node: SourceFile): boolean;
962963
isReferencedImportDeclaration(node: Node): boolean;

Diff for: tests/baselines/reference/APISample_transform.types

+15-15
Original file line numberDiff line numberDiff line change
@@ -1050,31 +1050,34 @@ declare module "typescript" {
10501050
Static = 128,
10511051
>Static : NodeFlags
10521052

1053-
MultiLine = 256,
1053+
Default = 256,
1054+
>Default : NodeFlags
1055+
1056+
MultiLine = 512,
10541057
>MultiLine : NodeFlags
10551058

1056-
Synthetic = 512,
1059+
Synthetic = 1024,
10571060
>Synthetic : NodeFlags
10581061

1059-
DeclarationFile = 1024,
1062+
DeclarationFile = 2048,
10601063
>DeclarationFile : NodeFlags
10611064

1062-
Let = 2048,
1065+
Let = 4096,
10631066
>Let : NodeFlags
10641067

1065-
Const = 4096,
1068+
Const = 8192,
10661069
>Const : NodeFlags
10671070

1068-
OctalLiteral = 8192,
1071+
OctalLiteral = 16384,
10691072
>OctalLiteral : NodeFlags
10701073

1071-
Modifier = 243,
1074+
Modifier = 499,
10721075
>Modifier : NodeFlags
10731076

10741077
AccessibilityModifier = 112,
10751078
>AccessibilityModifier : NodeFlags
10761079

1077-
BlockScoped = 6144,
1080+
BlockScoped = 12288,
10781081
>BlockScoped : NodeFlags
10791082
}
10801083
const enum ParserContextFlags {
@@ -3050,13 +3053,10 @@ declare module "typescript" {
30503053
interface EmitResolver {
30513054
>EmitResolver : EmitResolver
30523055

3053-
getGeneratedNameForNode(node: ModuleDeclaration | EnumDeclaration | ImportDeclaration | ExportDeclaration): string;
3054-
>getGeneratedNameForNode : (node: EnumDeclaration | ModuleDeclaration | ImportDeclaration | ExportDeclaration) => string
3055-
>node : EnumDeclaration | ModuleDeclaration | ImportDeclaration | ExportDeclaration
3056-
>ModuleDeclaration : ModuleDeclaration
3057-
>EnumDeclaration : EnumDeclaration
3058-
>ImportDeclaration : ImportDeclaration
3059-
>ExportDeclaration : ExportDeclaration
3056+
getGeneratedNameForNode(node: Node): string;
3057+
>getGeneratedNameForNode : (node: Node) => string
3058+
>node : Node
3059+
>Node : Node
30603060

30613061
getExpressionNameSubstitution(node: Identifier): string;
30623062
>getExpressionNameSubstitution : (node: Identifier) => string

Diff for: tests/baselines/reference/APISample_watcher.js

+10-9
Original file line numberDiff line numberDiff line change
@@ -382,15 +382,16 @@ declare module "typescript" {
382382
Private = 32,
383383
Protected = 64,
384384
Static = 128,
385-
MultiLine = 256,
386-
Synthetic = 512,
387-
DeclarationFile = 1024,
388-
Let = 2048,
389-
Const = 4096,
390-
OctalLiteral = 8192,
391-
Modifier = 243,
385+
Default = 256,
386+
MultiLine = 512,
387+
Synthetic = 1024,
388+
DeclarationFile = 2048,
389+
Let = 4096,
390+
Const = 8192,
391+
OctalLiteral = 16384,
392+
Modifier = 499,
392393
AccessibilityModifier = 112,
393-
BlockScoped = 6144,
394+
BlockScoped = 12288,
394395
}
395396
const enum ParserContextFlags {
396397
StrictMode = 1,
@@ -993,7 +994,7 @@ declare module "typescript" {
993994
errorModuleName?: string;
994995
}
995996
interface EmitResolver {
996-
getGeneratedNameForNode(node: ModuleDeclaration | EnumDeclaration | ImportDeclaration | ExportDeclaration): string;
997+
getGeneratedNameForNode(node: Node): string;
997998
getExpressionNameSubstitution(node: Identifier): string;
998999
hasExportDefaultValue(node: SourceFile): boolean;
9991000
isReferencedImportDeclaration(node: Node): boolean;

Diff for: tests/baselines/reference/APISample_watcher.types

+15-15
Original file line numberDiff line numberDiff line change
@@ -1223,31 +1223,34 @@ declare module "typescript" {
12231223
Static = 128,
12241224
>Static : NodeFlags
12251225

1226-
MultiLine = 256,
1226+
Default = 256,
1227+
>Default : NodeFlags
1228+
1229+
MultiLine = 512,
12271230
>MultiLine : NodeFlags
12281231

1229-
Synthetic = 512,
1232+
Synthetic = 1024,
12301233
>Synthetic : NodeFlags
12311234

1232-
DeclarationFile = 1024,
1235+
DeclarationFile = 2048,
12331236
>DeclarationFile : NodeFlags
12341237

1235-
Let = 2048,
1238+
Let = 4096,
12361239
>Let : NodeFlags
12371240

1238-
Const = 4096,
1241+
Const = 8192,
12391242
>Const : NodeFlags
12401243

1241-
OctalLiteral = 8192,
1244+
OctalLiteral = 16384,
12421245
>OctalLiteral : NodeFlags
12431246

1244-
Modifier = 243,
1247+
Modifier = 499,
12451248
>Modifier : NodeFlags
12461249

12471250
AccessibilityModifier = 112,
12481251
>AccessibilityModifier : NodeFlags
12491252

1250-
BlockScoped = 6144,
1253+
BlockScoped = 12288,
12511254
>BlockScoped : NodeFlags
12521255
}
12531256
const enum ParserContextFlags {
@@ -3223,13 +3226,10 @@ declare module "typescript" {
32233226
interface EmitResolver {
32243227
>EmitResolver : EmitResolver
32253228

3226-
getGeneratedNameForNode(node: ModuleDeclaration | EnumDeclaration | ImportDeclaration | ExportDeclaration): string;
3227-
>getGeneratedNameForNode : (node: EnumDeclaration | ModuleDeclaration | ImportDeclaration | ExportDeclaration) => string
3228-
>node : EnumDeclaration | ModuleDeclaration | ImportDeclaration | ExportDeclaration
3229-
>ModuleDeclaration : ModuleDeclaration
3230-
>EnumDeclaration : EnumDeclaration
3231-
>ImportDeclaration : ImportDeclaration
3232-
>ExportDeclaration : ExportDeclaration
3229+
getGeneratedNameForNode(node: Node): string;
3230+
>getGeneratedNameForNode : (node: Node) => string
3231+
>node : Node
3232+
>Node : Node
32333233

32343234
getExpressionNameSubstitution(node: Identifier): string;
32353235
>getExpressionNameSubstitution : (node: Identifier) => string

0 commit comments

Comments
 (0)