add scope and kwbegin
scope is just a list of statements
This commit is contained in:
12
lib/vool/variables.rb
Normal file
12
lib/vool/variables.rb
Normal file
@ -0,0 +1,12 @@
|
||||
module Vool
|
||||
module Named
|
||||
attr_accessor :name
|
||||
def initialize name
|
||||
@name = name
|
||||
end
|
||||
end
|
||||
|
||||
class LocalVariable < Statement
|
||||
include Named
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user