We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e046509 commit 3c29e9fCopy full SHA for 3c29e9f
src/tracer.ts
@@ -53,6 +53,10 @@ function walk(node: any, visitor: Visitor) {
53
walk(node.test, visitor.GetChildrenVisitor(node.kind + "-test"));
54
}
55
56
+ if (node.alternate !== undefined && node.alternate !== null) {
57
+ walk(node.alternate, visitor.GetChildrenVisitor(node.kind + "-alternate"));
58
+ }
59
+
60
if (node.body !== undefined) {
61
walk(node.body, visitor.GetChildrenVisitor(node.kind + "-body"));
62
0 commit comments