rubyx/lib/vool/statements.rb

12 lines
196 B
Ruby
Raw Normal View History

2017-04-01 20:28:57 +02:00
module Vool
class Statements < Statement
attr_accessor :statements
def initialize(statements)
@statements = statements
end
end
class ScopeStatement < Statements
2017-04-01 20:28:57 +02:00
end
end