Skip to content

Commit 010b188

Browse files
authored
release-5.4: Revert PR 56087 (#57850)
1 parent fc7006c commit 010b188

File tree

3 files changed

+34
-12
lines changed

3 files changed

+34
-12
lines changed

src/compiler/checker.ts

-6
Original file line numberDiff line numberDiff line change
@@ -5735,12 +5735,6 @@ export function createTypeChecker(host: TypeCheckerHost): TypeChecker {
57355735
* Checks if two symbols, through aliasing and/or merging, refer to the same thing
57365736
*/
57375737
function getSymbolIfSameReference(s1: Symbol, s2: Symbol) {
5738-
if (s1.flags & SymbolFlags.TypeAlias && s2.declarations?.find(isTypeAlias)) {
5739-
s2 = getDeclaredTypeOfTypeAlias(s2).aliasSymbol || s2;
5740-
}
5741-
if (s2.flags & SymbolFlags.TypeAlias && s1.declarations?.find(isTypeAlias)) {
5742-
s1 = getDeclaredTypeOfTypeAlias(s1).aliasSymbol || s1;
5743-
}
57445738
if (getMergedSymbol(resolveSymbol(getMergedSymbol(s1))) === getMergedSymbol(resolveSymbol(getMergedSymbol(s2)))) {
57455739
return s1;
57465740
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
src/index.ts(3,14): error TS2742: The inferred type of 'foo' cannot be named without a reference to '../node_modules/some-dep/dist/inner'. This is likely not portable. A type annotation is necessary.
2+
src/index.ts(7,14): error TS2742: The inferred type of 'bar' cannot be named without a reference to '../node_modules/some-dep/dist/inner'. This is likely not portable. A type annotation is necessary.
3+
4+
5+
==== node_modules/some-dep/dist/inner.d.ts (0 errors) ====
6+
export declare type Other = { other: string };
7+
export declare type SomeType = { arg: Other };
8+
9+
==== node_modules/some-dep/dist/index.d.ts (0 errors) ====
10+
export type OtherType = import('./inner').Other;
11+
export type SomeType = import('./inner').SomeType;
12+
13+
==== node_modules/some-dep/package.json (0 errors) ====
14+
{
15+
"name": "some-dep",
16+
"exports": {
17+
".": "./dist/index.js"
18+
}
19+
}
20+
21+
==== src/index.ts (2 errors) ====
22+
import { SomeType } from "some-dep";
23+
24+
export const foo = (thing: SomeType) => {
25+
~~~
26+
!!! error TS2742: The inferred type of 'foo' cannot be named without a reference to '../node_modules/some-dep/dist/inner'. This is likely not portable. A type annotation is necessary.
27+
return thing;
28+
};
29+
30+
export const bar = (thing: SomeType) => {
31+
~~~
32+
!!! error TS2742: The inferred type of 'bar' cannot be named without a reference to '../node_modules/some-dep/dist/inner'. This is likely not portable. A type annotation is necessary.
33+
return thing.arg;
34+
};

tests/baselines/reference/declarationEmitUsingTypeAlias1.js

-6
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,3 @@ var bar = function (thing) {
3939
return thing.arg;
4040
};
4141
exports.bar = bar;
42-
43-
44-
//// [index.d.ts]
45-
import { SomeType } from "some-dep";
46-
export declare const foo: (thing: SomeType) => import("some-dep").SomeType;
47-
export declare const bar: (thing: SomeType) => import("some-dep").OtherType;

0 commit comments

Comments
 (0)