Lines Matching defs:newDeclarator
142 auto *newDeclarator = util::NodeAllocator::ForceSetParent<ir::VariableDeclarator>(
145 declVec.push_back(newDeclarator);
147 auto *newDecl = allocator->New<varbinder::ConstDecl>(id->Name(), newDeclarator);
151 newDeclarator->Id()->AsIdentifier()->SetVariable(newVar);
195 auto *newDeclarator = util::NodeAllocator::ForceSetParent<ir::VariableDeclarator>(
197 newDeclarator->SetParent(declarator->Parent());
199 auto *newDecl = allocator->New<varbinder::ConstDecl>(oldVar->Name(), newDeclarator);
201 newDeclarator->Id()->AsIdentifier()->SetVariable(newVar);
212 newDeclarator->Check(checker);
216 return newDeclarator;