Method: CodeTools::AST::And#initialize

Defined in:
lib/rubinius/code/ast/operators.rb

#initialize(line, left, right) ⇒ And

Returns a new instance of And.



8
9
10
11
12
# File 'lib/rubinius/code/ast/operators.rb', line 8

def initialize(line, left, right)
  @line = line
  @left = left
  @right = right
end