-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(typescript): Collect usages in extend clauses of classes and inte…
- Loading branch information
Showing
10 changed files
with
77 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
swc_typescript: patch | ||
--- | ||
|
||
fix(typescript): Collect usages in extend clauses of classes and interfaces |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
```==================== .D.TS ==================== | ||
import type * as Member from "some-path/my_module"; | ||
export interface IMember extends Member.C<"SimpleEntity"> { | ||
} | ||
import type * as Ident from "some-path/my_module"; | ||
export interface IIdent extends Ident { | ||
} | ||
import * as Paren from "some-path/my_module"; | ||
export declare class CParen extends Paren { | ||
} | ||
import * as OptChain from "some-path/my_module"; | ||
export declare class COptChain extends OptChain?.C<"SimpleEntity"> { | ||
} | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import type * as Member from "some-path/my_module"; | ||
export interface IMember extends Member.C<"SimpleEntity"> {} | ||
|
||
import type * as Ident from "some-path/my_module"; | ||
export interface IIdent extends Ident {} | ||
|
||
import * as Paren from "some-path/my_module"; | ||
export class CParen extends Paren {} | ||
|
||
import * as OptChain from "some-path/my_module"; | ||
export class COptChain extends OptChain?.C<"SimpleEntity"> {} |