rubyx/lib/vool/statements.rb

24 lines
392 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
2017-04-02 18:12:42 +02:00
def empty?
@statements.empty?
end
def single?
@statements.length == 1
end
def first
@statements.first
end
2017-04-05 13:03:48 +02:00
def length
@statements.length
end
end
class ScopeStatement < Statements
2017-04-01 20:28:57 +02:00
end
end