BinaryOpNode public class BinaryOpNode : ExprNode Undocumented Show on GitHub lhs Undocumented Declaration Swift public let lhs: ExprNode Show on GitHub rhs Undocumented Declaration Swift public let rhs: ExprNode Show on GitHub description Undocumented Declaration Swift public override var description: String { get } Show on GitHub init(name:lhs:rhs:) Undocumented Declaration Swift public init(name: String, lhs: ExprNode, rhs: ExprNode) Show on GitHub