Skip to content
This repository was archived by the owner on Jan 19, 2019. It is now read-only.

Commit 842f554

Browse files
committed
correct order of visiting in TSAbstractClassDeclaration
1 parent 8abba1d commit 842f554

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

visitor-keys.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ module.exports = Evk.unionWith({
2424
ClassProperty: ["decorators", "key", "typeAnnotation", "value"],
2525
Decorator: ["expression"],
2626
TSAbstractClassProperty: ["typeAnnotation", "key", "value"],
27-
TSAbstractClassDeclaration: ["id", "body", "superClass", "superTypeParameters", "implements"],
27+
TSAbstractClassDeclaration: ["id", "superClass", "superTypeParameters", "implements", "body"],
2828
TSAbstractKeyword: [],
2929
TSAbstractMethodDefinition: ["key", "value"],
3030
TSAnyKeyword: [],

0 commit comments

Comments
 (0)