Skip to content

Commit d8b0d4c

Browse files
committed
Accept baselines after actually adding emitBlocking when input and oputput name clash
1 parent c006fd9 commit d8b0d4c

File tree

79 files changed

+8
-1034
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+8
-1034
lines changed

testdata/baselines/reference/compiler/superCallInJSWithWrongBaseTypeArgumentCount1(strict=false).js

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -31,29 +31,6 @@ exports.A = void 0;
3131
class A {
3232
}
3333
exports.A = A;
34-
//// [b.js]
35-
"use strict";
36-
Object.defineProperty(exports, "__esModule", { value: true });
37-
exports.B3 = exports.B2 = exports.B1 = void 0;
38-
const a_js_1 = require("./a.js");
39-
class B1 extends a_js_1.A {
40-
constructor() {
41-
super();
42-
}
43-
}
44-
exports.B1 = B1;
45-
class B2 extends a_js_1.A {
46-
constructor() {
47-
super();
48-
}
49-
}
50-
exports.B2 = B2;
51-
class B3 extends a_js_1.A {
52-
constructor() {
53-
super();
54-
}
55-
}
56-
exports.B3 = B3;
5734

5835

5936
//// [a.d.ts]

testdata/baselines/reference/compiler/superCallInJSWithWrongBaseTypeArgumentCount1(strict=true).js

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -31,29 +31,6 @@ exports.A = void 0;
3131
class A {
3232
}
3333
exports.A = A;
34-
//// [b.js]
35-
"use strict";
36-
Object.defineProperty(exports, "__esModule", { value: true });
37-
exports.B3 = exports.B2 = exports.B1 = void 0;
38-
const a_js_1 = require("./a.js");
39-
class B1 extends a_js_1.A {
40-
constructor() {
41-
super();
42-
}
43-
}
44-
exports.B1 = B1;
45-
class B2 extends a_js_1.A {
46-
constructor() {
47-
super();
48-
}
49-
}
50-
exports.B2 = B2;
51-
class B3 extends a_js_1.A {
52-
constructor() {
53-
super();
54-
}
55-
}
56-
exports.B3 = B3;
5734

5835

5936
//// [a.d.ts]

testdata/baselines/reference/compiler/superCallInJSWithWrongBaseTypeArgumentCount2(strict=false).js

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -34,32 +34,6 @@ exports.A = void 0;
3434
class A {
3535
}
3636
exports.A = A;
37-
//// [b.js]
38-
"use strict";
39-
Object.defineProperty(exports, "__esModule", { value: true });
40-
exports.B3 = exports.B2 = exports.B1 = void 0;
41-
const a_js_1 = require("./a.js");
42-
/** @extends {A} */
43-
class B1 extends a_js_1.A {
44-
constructor() {
45-
super();
46-
}
47-
}
48-
exports.B1 = B1;
49-
/** @extends {A<string>} */
50-
class B2 extends a_js_1.A {
51-
constructor() {
52-
super();
53-
}
54-
}
55-
exports.B2 = B2;
56-
/** @extends {A<string, string>} */
57-
class B3 extends a_js_1.A {
58-
constructor() {
59-
super();
60-
}
61-
}
62-
exports.B3 = B3;
6337

6438

6539
//// [a.d.ts]

testdata/baselines/reference/compiler/superCallInJSWithWrongBaseTypeArgumentCount2(strict=true).js

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -34,32 +34,6 @@ exports.A = void 0;
3434
class A {
3535
}
3636
exports.A = A;
37-
//// [b.js]
38-
"use strict";
39-
Object.defineProperty(exports, "__esModule", { value: true });
40-
exports.B3 = exports.B2 = exports.B1 = void 0;
41-
const a_js_1 = require("./a.js");
42-
/** @extends {A} */
43-
class B1 extends a_js_1.A {
44-
constructor() {
45-
super();
46-
}
47-
}
48-
exports.B1 = B1;
49-
/** @extends {A<string>} */
50-
class B2 extends a_js_1.A {
51-
constructor() {
52-
super();
53-
}
54-
}
55-
exports.B2 = B2;
56-
/** @extends {A<string, string>} */
57-
class B3 extends a_js_1.A {
58-
constructor() {
59-
super();
60-
}
61-
}
62-
exports.B3 = B3;
6337

6438

6539
//// [a.d.ts]

testdata/baselines/reference/conformance/typeTagForMultipleVariableDeclarations.js

Lines changed: 0 additions & 16 deletions
This file was deleted.

testdata/baselines/reference/submodule/compiler/declarationFileOverwriteError.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,3 @@ class d {
1111
//// [a.js]
1212
class d {
1313
}
14-
15-
16-
//// [a.d.ts]
17-
declare class d {
18-
}

testdata/baselines/reference/submodule/compiler/declarationFileOverwriteError.js.diff

Lines changed: 0 additions & 11 deletions
This file was deleted.

testdata/baselines/reference/submodule/compiler/isolatedDeclarationsAllowJs.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@ export var y;
99
"use strict";
1010
Object.defineProperty(exports, "__esModule", { value: true });
1111
exports.x = void 0;
12-
//// [file2.js]
13-
"use strict";
14-
Object.defineProperty(exports, "__esModule", { value: true });
15-
exports.y = void 0;
1612

1713

1814
//// [file1.d.ts]

testdata/baselines/reference/submodule/compiler/isolatedDeclarationsAllowJs.js.diff

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,9 @@
11
--- old.isolatedDeclarationsAllowJs.js
22
+++ new.isolatedDeclarationsAllowJs.js
3-
@@= skipped -8, +8 lines =@@
4-
"use strict";
5-
Object.defineProperty(exports, "__esModule", { value: true });
3+
@@= skipped -10, +10 lines =@@
64
exports.x = void 0;
7-
-
8-
-
9-
+//// [file2.js]
10-
+"use strict";
11-
+Object.defineProperty(exports, "__esModule", { value: true });
12-
+exports.y = void 0;
13-
+
14-
+
5+
6+
157
+//// [file1.d.ts]
168
+export declare var x: any;
179
//// [file2.d.ts]

testdata/baselines/reference/submodule/compiler/jsFileCompilationAbstractModifier.js

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)