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=7b54393e237ed8f23c0c74f0a6cbc8de26c5bf98;hpb=57d4530c4d6814fa25338a00cc65b95938c723b6 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; +}