rubyx/lib/vool/statements/class_statement.rb

46 lines
1.3 KiB
Ruby
Raw Normal View History

module Vool
2017-04-08 11:11:52 +02:00
class ClassStatement < Statement
attr_reader :name, :super_class_name , :body
2017-04-08 11:11:52 +02:00
attr_reader :clazz
def initialize( name , supe , body)
@name , @super_class_name , @body = name , supe , body
2017-04-08 11:11:52 +02:00
end
def normalize
ClassStatement.new(@name , @super_class_name, @body.normalize )
end
# compilation to the next layer, mom
# context coming in for class is nil, also for methods, henceafter a method is passed down
def to_mom( _ )
@body.to_mom(nil)
end
def each(&block)
block.call(self)
@body.each(&block)
2017-04-08 11:11:52 +02:00
end
def create_objects
create_class_object
self.each {|node| node.create_objects(@clazz) if node.is_a?(MethodStatement) }
end
def create_class_object
2017-04-08 11:11:52 +02:00
@clazz = Parfait.object_space.get_class_by_name(@name )
if(@clazz)
#FIXME super class check with "sup"
#existing class, don't overwrite type (parfait only?)
else
2017-04-08 11:11:52 +02:00
@clazz = Parfait.object_space.create_class(@name , @super_class_name )
ivar_hash = {}
self.each do |node|
next unless node.is_a?(InstanceVariable) or node.is_a?(IvarAssignment)
ivar_hash[node.name] = :Object
end
@clazz.set_instance_type( Parfait::Type.for_hash( @clazz , ivar_hash ) )
2017-04-08 11:11:52 +02:00
end
end
end
end