add scope and kwbegin

scope is just a list of statements
This commit is contained in:
Torsten Ruger
2017-04-02 13:24:09 +03:00
parent 27e4e9f501
commit 539ab692a3
7 changed files with 50 additions and 3 deletions

View File

@ -1,5 +1,11 @@
module Vool
class Statements < Statement
attr_accessor :statements
def initialize(statements)
@statements = statements
end
end
class ScopeStatement < Statements
end
end