539ab692a3
scope is just a list of statements
13 lines
171 B
Ruby
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
|