rubyx/lib/vool/variables.rb
Torsten Ruger 539ab692a3 add scope and kwbegin
scope is just a list of statements
2017-04-02 13:24:09 +03:00

13 lines
171 B
Ruby

module Vool
module Named
attr_accessor :name
def initialize name
@name = name
end
end
class LocalVariable < Statement
include Named
end
end