[ASTWalker] NFC: Rename SkipChildren -> SkipNode

This better describes what the action currently
does, and allows us to re-introduce `SkipChildren`
with the correct behavior.
This commit is contained in:
Hamish Knight
2024-02-05 15:27:25 +00:00
parent 94c4d117a1
commit 16cfca4186
54 changed files with 357 additions and 359 deletions

View File

@@ -1608,7 +1608,7 @@ private:
Elem.walk(*this);
}
}
return Action::SkipChildren();
return Action::SkipNode();
}
return Action::Continue();
}