]> oss.titaniummirror.com Git - nesc.git/blobdiff - src/AST_walk_children.c
Merge branch 'upstream' (nesc-1.3.2)
[nesc.git] / src / AST_walk_children.c
index 8e86b80ce2ff4f74d97147ec0a3ce42dfee75466..f3630c7fb30fe65484852c2ecba9943704743cd9 100644 (file)
@@ -862,3 +862,10 @@ case kind_nx_union_ref: {
   AST_walk_list(s, d, (node *)&x->fields);
   break;
 }
+case kind_target_attribute: {
+  target_attribute x = CAST(target_attribute, n);
+
+  AST_walk_list(s, d, (node *)&x->word1);
+  AST_walk_list(s, d, (node *)&x->args);
+  break;
+}