Lines Matching defs:other
126 CallExpression::CallExpression(CallExpression const &other, ArenaAllocator *const allocator)
127 : MaybeOptionalExpression(static_cast<MaybeOptionalExpression const &>(other)),
129 signature_(other.signature_),
130 trailingComma_(other.trailingComma_),
131 isTrailingBlockInNewLine_(other.isTrailingBlockInNewLine_)
133 callee_ = other.callee_->Clone(allocator, this)->AsExpression();
134 typeParams_ = other.typeParams_ != nullptr ? other.typeParams_->Clone(allocator, this) : nullptr;
136 for (auto *const argument : other.arguments_) {
141 other.trailingBlock_ != nullptr ? other.trailingBlock_->Clone(allocator, this)->AsBlockStatement() : nullptr;