class Malady::AST::BinaryNode
Attributes
lhs[R]
rhs[R]
Public Class Methods
new(filename, line, lhs, rhs)
click to toggle source
Calls superclass method
Malady::AST::Node::new
# File lib/malady/ast.rb, line 69 def initialize(filename, line, lhs, rhs) super @lhs = lhs @rhs = rhs end