Lines Matching defs:node
43 const auto node = scope->Node();
45 if (!IsContainedIn(ast, node)) {
46 if (CheckCatchClause(ast, node)) {
66 bool VariableHasEnclosingScope::CheckCatchClause(const ir::AstNode *ast, const ir::AstNode *node) const
68 if (node == nullptr) {
72 // Check that ast node is contained within node parent for Catch Clause:
80 if (node->Parent() != nullptr && node->Parent()->IsCatchClause()) {
81 return IsContainedIn(ast, node->Parent());