File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
src/compiler/transformers Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ import {
25
25
ComputedPropertyName ,
26
26
ConstructorDeclaration ,
27
27
createAccessorPropertyBackingField ,
28
- Debug ,
29
28
Decorator ,
30
29
ElementAccessExpression ,
31
30
EmitFlags ,
@@ -177,6 +176,8 @@ import {
177
176
VisitResult ,
178
177
} from "../_namespaces/ts" ;
179
178
179
+ import * as Debug from "../debug" ;
180
+
180
181
// Class/Decorator evaluation order, as it pertains to this transformer:
181
182
//
182
183
// 1. Class decorators are evaluated outside of the private name scope of the class.
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ import {
14
14
ClassLikeDeclaration ,
15
15
classOrConstructorParameterIsDecorated ,
16
16
ConstructorDeclaration ,
17
- Debug ,
18
17
Decorator ,
19
18
elideNodes ,
20
19
EmitFlags ,
@@ -82,6 +81,8 @@ import {
82
81
VisitResult ,
83
82
} from "../_namespaces/ts" ;
84
83
84
+ import * as Debug from "../debug" ;
85
+
85
86
/** @internal */
86
87
export function transformLegacyDecorators ( context : TransformationContext ) : ( x : SourceFile | Bundle ) => SourceFile | Bundle {
87
88
const {
You can’t perform that action at this time.
0 commit comments