Skip to content

Commit 1d07dde

Browse files
committed
refactor baseline tests for import/export name collision
1 parent 6915c19 commit 1d07dde

10 files changed

+26
-10
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
tests/cases/compiler/f2.ts(1,9): error TS2440: Import declaration conflicts with local declaration of 'N'.
2+
3+
4+
==== tests/cases/compiler/f1.ts (0 errors) ====
5+
export namespace N { export var x = 1; }
6+
7+
==== tests/cases/compiler/f2.ts (1 errors) ====
8+
import {N} from "./f1";
9+
~
10+
!!! error TS2440: Import declaration conflicts with local declaration of 'N'.
11+
export namespace N {
12+
export interface I {x: any}
13+
}

tests/baselines/reference/mergeWithImportedNamespace.js

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ export namespace N { export var x = 1; }
55

66
//// [f2.ts]
77
import {N} from "./f1";
8-
// partial revert of https://github.com/Microsoft/TypeScript/pull/7583 to prevent breaking changes
98
export namespace N {
109
export interface I {x: any}
1110
}

tests/baselines/reference/mergeWithImportedNamespace.symbols

+2-3
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,10 @@ export namespace N { export var x = 1; }
77
import {N} from "./f1";
88
>N : Symbol(N, Decl(f2.ts, 0, 8), Decl(f2.ts, 0, 23))
99

10-
// partial revert of https://github.com/Microsoft/TypeScript/pull/7583 to prevent breaking changes
1110
export namespace N {
1211
>N : Symbol(N, Decl(f2.ts, 0, 23))
1312

1413
export interface I {x: any}
15-
>I : Symbol(I, Decl(f2.ts, 2, 20))
16-
>x : Symbol(I.x, Decl(f2.ts, 3, 24))
14+
>I : Symbol(I, Decl(f2.ts, 1, 20))
15+
>x : Symbol(I.x, Decl(f2.ts, 2, 24))
1716
}

tests/baselines/reference/mergeWithImportedNamespace.types

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ export namespace N { export var x = 1; }
88
import {N} from "./f1";
99
>N : typeof N
1010

11-
// partial revert of https://github.com/Microsoft/TypeScript/pull/7583 to prevent breaking changes
1211
export namespace N {
1312
export interface I {x: any}
1413
>x : any
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
tests/cases/compiler/f2.ts(1,9): error TS2440: Import declaration conflicts with local declaration of 'E'.
2+
3+
4+
==== tests/cases/compiler/f1.ts (0 errors) ====
5+
export enum E {X}
6+
7+
==== tests/cases/compiler/f2.ts (1 errors) ====
8+
import {E} from "./f1";
9+
~
10+
!!! error TS2440: Import declaration conflicts with local declaration of 'E'.
11+
export type E = E;

tests/baselines/reference/mergeWithImportedType.js

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ export enum E {X}
55

66
//// [f2.ts]
77
import {E} from "./f1";
8-
// partial revert of https://github.com/Microsoft/TypeScript/pull/7583 to prevent breaking changes
98
export type E = E;
109

1110
//// [f1.js]

tests/baselines/reference/mergeWithImportedType.symbols

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ export enum E {X}
77
import {E} from "./f1";
88
>E : Symbol(E, Decl(f2.ts, 0, 8), Decl(f2.ts, 0, 23))
99

10-
// partial revert of https://github.com/Microsoft/TypeScript/pull/7583 to prevent breaking changes
1110
export type E = E;
1211
>E : Symbol(E, Decl(f2.ts, 0, 23))
1312
>E : Symbol(E, Decl(f2.ts, 0, 8), Decl(f2.ts, 0, 23))

tests/baselines/reference/mergeWithImportedType.types

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ export enum E {X}
77
import {E} from "./f1";
88
>E : typeof E
99

10-
// partial revert of https://github.com/Microsoft/TypeScript/pull/7583 to prevent breaking changes
1110
export type E = E;
1211
>E : E
1312

tests/cases/compiler/mergeWithImportedNamespace.ts

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ export namespace N { export var x = 1; }
44

55
// @filename: f2.ts
66
import {N} from "./f1";
7-
// partial revert of https://github.com/Microsoft/TypeScript/pull/7583 to prevent breaking changes
87
export namespace N {
98
export interface I {x: any}
109
}

tests/cases/compiler/mergeWithImportedType.ts

-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,4 @@ export enum E {X}
44

55
// @filename: f2.ts
66
import {E} from "./f1";
7-
// partial revert of https://github.com/Microsoft/TypeScript/pull/7583 to prevent breaking changes
87
export type E = E;

0 commit comments

Comments
 (0)