Torsten Rüger
d1f8733623
Simple is really the descriptive name for the layer Sure, it is "virtual" but that is not as important as the fact that it is simple (or simplified) Also objct (based really) is better, since orientated implies it is a little like that, but only orientated, not really it. Sol only has objects, nothing else Just cause i was renaming anyway
37 lines
528 B
Ruby
37 lines
528 B
Ruby
module Ruby
|
|
class Variable < Statement
|
|
attr_reader :name
|
|
|
|
def initialize name
|
|
@name = name
|
|
end
|
|
|
|
def to_sol
|
|
sol_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
|