Lines Matching refs:ETSNewArrayInstanceExpression
27 void ETSNewArrayInstanceExpression::TransformChildren(const NodeTransformer &cb,
41 void ETSNewArrayInstanceExpression::Iterate(const NodeTraverser &cb) const
47 void ETSNewArrayInstanceExpression::Dump(ir::AstDumper *dumper) const
50 {{"type", "ETSNewArrayInstanceExpression"}, {"typeReference", typeReference_}, {"dimension", dimension_}});
53 void ETSNewArrayInstanceExpression::Dump(ir::SrcDumper *dumper) const
64 void ETSNewArrayInstanceExpression::Compile(compiler::PandaGen *pg) const
68 void ETSNewArrayInstanceExpression::Compile(compiler::ETSGen *etsg) const
73 checker::Type *ETSNewArrayInstanceExpression::Check(checker::TSChecker *checker)
78 checker::Type *ETSNewArrayInstanceExpression::Check(checker::ETSChecker *checker)
83 ETSNewArrayInstanceExpression *ETSNewArrayInstanceExpression::Clone(ArenaAllocator *const allocator,
89 if (auto *const clone = allocator->New<ETSNewArrayInstanceExpression>(typeRef, dimension); clone != nullptr) {