class RKelly::Nodes::ForInNode
Attributes
left[R]
right[R]
Public Class Methods
new(left, right, block)
click to toggle source
Calls superclass method
# File lib/rkelly/nodes/for_in_node.rb, line 5 def initialize(left, right, block) super(block) @left = left @right = right end