rubyx/lib/vool/variables.rb
2017-04-04 18:00:21 +03:00

25 lines
348 B
Ruby

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