rubyx/lib/ruby/variables.rb
Torsten Rüger 363d1cb36f fix module handling at ruby level
Was returning arrays instead of Statements, which messed things up
2019-09-06 21:00:37 +03:00

37 lines
530 B
Ruby

module Ruby
class Variable < Statement
attr_reader :name
def initialize name
@name = name
end
def to_vool
vool_brother.new(@name)
end
def to_s(depth=0)
name.to_s
end
end
class LocalVariable < Variable
end
class InstanceVariable < Variable
# used to collect type information
def add_ivar( array )
array << @name
end
def to_s(depth = 0)
"@#{name}"
end
end
class ClassVariable < Variable
end
class ModuleName < Variable
end
end