Skip to content

Commit 5ec6a98

Browse files
author
Joseph Watts
committed
Rename PrivateNamedField to PrivateNamedInstanceField
1 parent 6c99a12 commit 5ec6a98

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/compiler/transformers/esnext.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace ts {
1313
/**
1414
* A mapping of private names to information needed for transformation.
1515
*/
16-
type PrivateNameEnvironment = UnderscoreEscapedMap<PrivateNamedField>;
16+
type PrivateNameEnvironment = UnderscoreEscapedMap<PrivateNamedInstanceField>;
1717

1818
/**
1919
* Identifies the type of private name.
@@ -22,7 +22,7 @@ namespace ts {
2222
InstanceField
2323
}
2424

25-
interface PrivateNamedField {
25+
interface PrivateNamedInstanceField {
2626
type: PrivateNameType.InstanceField;
2727
weakMapName: Identifier;
2828
}

0 commit comments

Comments
 (0)