We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c99a12 commit 5ec6a98Copy full SHA for 5ec6a98
src/compiler/transformers/esnext.ts
@@ -13,7 +13,7 @@ namespace ts {
13
/**
14
* A mapping of private names to information needed for transformation.
15
*/
16
- type PrivateNameEnvironment = UnderscoreEscapedMap<PrivateNamedField>;
+ type PrivateNameEnvironment = UnderscoreEscapedMap<PrivateNamedInstanceField>;
17
18
19
* Identifies the type of private name.
@@ -22,7 +22,7 @@ namespace ts {
22
InstanceField
23
}
24
25
- interface PrivateNamedField {
+ interface PrivateNamedInstanceField {
26
type: PrivateNameType.InstanceField;
27
weakMapName: Identifier;
28
0 commit comments