Lines Matching refs:BinaryExpression
27 void BinaryExpression::TransformChildren(const NodeTransformer &cb, std::string_view const transfor… in TransformChildren()
40 void BinaryExpression::Iterate(const NodeTraverser &cb) const in Iterate()
46 void BinaryExpression::Dump(ir::AstDumper *dumper) const in Dump()
54 void BinaryExpression::Dump(ir::SrcDumper *dumper) const in Dump()
67 void BinaryExpression::Compile(compiler::PandaGen *pg) const in Compile()
72 void BinaryExpression::Compile(compiler::ETSGen *etsg) const in Compile()
77 void BinaryExpression::CompileOperands(compiler::ETSGen *etsg, compiler::VReg lhs) const in CompileOperands()
91 checker::Type *BinaryExpression::Check(checker::TSChecker *checker) in Check()
96 checker::Type *BinaryExpression::Check(checker::ETSChecker *checker) in Check()
101 BinaryExpression *BinaryExpression::Clone(ArenaAllocator *const allocator, AstNode *const parent) in Clone()
106 …if (auto *const clone = allocator->New<BinaryExpression>(left, right, operator_); clone != nullptr… in Clone()