7458abc8b3
git-svn-id: file:///home/svn/framework3/trunk@12815 4d416f70-5f16-0410-b530-b9f4589650da
14 lines
260 B
Ruby
14 lines
260 B
Ruby
module RKelly
|
|
module Nodes
|
|
class ForNode < Node
|
|
attr_reader :init, :test, :counter
|
|
def initialize(init, test, counter, body)
|
|
super(body)
|
|
@init = init
|
|
@test = test
|
|
@counter = counter
|
|
end
|
|
end
|
|
end
|
|
end
|