Skip to content

Commit 742b5bf

Browse files
committed
Fix: order of visiting in TSAbstractClassProperty
1 parent 491ebca commit 742b5bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

visitor-keys.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ module.exports = Evk.unionWith({
2323
// Additional Nodes.
2424
ClassProperty: ["decorators", "key", "typeAnnotation", "value"],
2525
Decorator: ["expression"],
26-
TSAbstractClassProperty: ["typeAnnotation", "key", "value"],
26+
TSAbstractClassProperty: ["key", "typeAnnotation", "value"],
2727
TSAbstractClassDeclaration: ["id", "body", "superClass", "implements"],
2828
TSAbstractKeyword: [],
2929
TSAbstractMethodDefinition: ["key", "value"],

0 commit comments

Comments
 (0)