class RKelly::Nodes::ForNode
Attributes
counter[R]
init[R]
test[R]
Public Class Methods
new(init, test, counter, body)
click to toggle source
Calls superclass method
# File lib/rkelly/nodes/for_node.rb, line 5 def initialize(init, test, counter, body) super(body) @init = init @test = test @counter = counter end