Lines Matching defs:tmpNode
158 const ir::AstNode *tmpNode = ast;
159 while (tmpNode->Parent() != nullptr && !tmpNode->IsClassDefinition()) {
160 tmpNode = tmpNode->Parent();
162 if (!tmpNode->IsClassDefinition()) {
165 auto *classDefinition = tmpNode->AsClassDefinition();
171 const ir::AstNode *tmpNode = ast;
172 while (tmpNode->Parent() != nullptr && !tmpNode->IsTSInterfaceDeclaration()) {
173 tmpNode = tmpNode->Parent();
175 if (!tmpNode->IsTSInterfaceDeclaration()) {
178 auto *tsInterfaceDeclaration = tmpNode->AsTSInterfaceDeclaration();