File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ namespace ts {
33
33
addRange ( transformers , customTransformers && customTransformers . before ) ;
34
34
35
35
transformers . push ( transformTypeScript ) ;
36
- transformers . push ( transformClassProperties ) ;
36
+ transformers . push ( transformClassFields ) ;
37
37
38
38
if ( jsx === JsxEmit . React ) {
39
39
transformers . push ( transformJsx ) ;
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ namespace ts {
14
14
* (where the declarations get elided and initializers are transformed as assignments in the constructor).
15
15
* Eventually, this transform will change to the ECMAScript semantics (with Object.defineProperty).
16
16
*/
17
- export function transformClassProperties ( context : TransformationContext ) {
17
+ export function transformClassFields ( context : TransformationContext ) {
18
18
const {
19
19
hoistVariableDeclaration,
20
20
endLexicalEnvironment,
You can’t perform that action at this time.
0 commit comments