Lines Matching defs:ETSLaunchExpression
26 ETSLaunchExpression::ETSLaunchExpression(CallExpression *expr)
31 void ETSLaunchExpression::TransformChildren(const NodeTransformer &cb, std::string_view const transformationName)
39 void ETSLaunchExpression::Iterate(const NodeTraverser &cb) const
44 void ETSLaunchExpression::Dump(ir::AstDumper *dumper) const
46 dumper->Add({{"type", "ETSLaunchExpression"}, {"expr", expr_}});
49 void ETSLaunchExpression::Dump(ir::SrcDumper *dumper) const
55 void ETSLaunchExpression::Compile(compiler::PandaGen *pg) const
60 void ETSLaunchExpression::Compile([[maybe_unused]] compiler::ETSGen *etsg) const
67 checker::Type *ETSLaunchExpression::Check(checker::TSChecker *checker)
72 checker::Type *ETSLaunchExpression::Check(checker::ETSChecker *checker)
77 bool ETSLaunchExpression::IsStaticCall() const
82 ETSLaunchExpression *ETSLaunchExpression::Clone(ArenaAllocator *const allocator, AstNode *const parent)
86 if (auto *const clone = allocator->New<ETSLaunchExpression>(expr); clone != nullptr) {