rubyx/lib/vool/statements.rb
2017-04-02 19:12:42 +03:00

21 lines
344 B
Ruby

module Vool
class Statements < Statement
attr_accessor :statements
def initialize(statements)
@statements = statements
end
def empty?
@statements.empty?
end
def single?
@statements.length == 1
end
def first
@statements.first
end
end
class ScopeStatement < Statements
end
end