X-Git-Url: https://oss.titaniummirror.com/gitweb/?p=nesc.git;a=blobdiff_plain;f=src%2FAST_walk_children.c;fp=src%2FAST_walk_children.c;h=f3630c7fb30fe65484852c2ecba9943704743cd9;hp=8e86b80ce2ff4f74d97147ec0a3ce42dfee75466;hb=afe799e7802f38d1f55e1bd2044451ba164743b1;hpb=38be457fa32d3ab0721ec1fc9e5086b745e17468 diff --git a/src/AST_walk_children.c b/src/AST_walk_children.c index 8e86b80..f3630c7 100644 --- a/src/AST_walk_children.c +++ b/src/AST_walk_children.c @@ -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; +}