40 lines
598 B
Ruby
40 lines
598 B
Ruby
module Ruby
|
|
module Named
|
|
attr_reader :name
|
|
def initialize name
|
|
@name = name
|
|
end
|
|
def each(&block)
|
|
end
|
|
def to_vool
|
|
vool_brother.new(@name)
|
|
end
|
|
end
|
|
|
|
class LocalVariable < Statement
|
|
include Named
|
|
def to_s
|
|
name.to_s
|
|
end
|
|
end
|
|
|
|
class InstanceVariable < Statement
|
|
include Named
|
|
# used to collect type information
|
|
def add_ivar( array )
|
|
array << @name
|
|
end
|
|
def to_s
|
|
"@#{name}"
|
|
end
|
|
end
|
|
|
|
class ClassVariable < Statement
|
|
include Named
|
|
end
|
|
|
|
class ModuleName < Statement
|
|
include Named
|
|
end
|
|
end
|