2017-04-01 14:57:39 +02:00
|
|
|
module Vool
|
2017-04-08 11:11:52 +02:00
|
|
|
class ClassStatement < Statement
|
2017-04-01 14:57:39 +02:00
|
|
|
attr_reader :name, :super_class_name , :body
|
2017-04-08 11:11:52 +02:00
|
|
|
attr_reader :clazz
|
2017-04-01 14:57:39 +02:00
|
|
|
|
|
|
|
def initialize( name , supe , body)
|
2017-04-09 08:59:21 +02:00
|
|
|
@name , @super_class_name , @body = name , supe , body
|
2017-04-08 11:11:52 +02:00
|
|
|
end
|
|
|
|
|
2018-03-15 08:16:56 +01:00
|
|
|
def normalize
|
|
|
|
ClassStatement.new(@name , @super_class_name, @body.normalize )
|
|
|
|
end
|
2017-04-12 10:52:23 +02:00
|
|
|
# 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( _ )
|
2018-03-15 12:52:56 +01:00
|
|
|
@body.to_mom(nil)
|
2017-04-12 10:52:23 +02:00
|
|
|
end
|
|
|
|
|
2018-03-15 12:52:56 +01:00
|
|
|
def each(&block)
|
|
|
|
block.call(self)
|
|
|
|
@body.each(&block)
|
2017-04-08 11:11:52 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def create_objects
|
2018-03-14 13:11:09 +01:00
|
|
|
create_class_object
|
2018-03-15 12:52:56 +01:00
|
|
|
self.each {|node| node.create_objects(@clazz) if node.is_a?(MethodStatement) }
|
2018-03-14 13:11:09 +01:00
|
|
|
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"
|
2017-04-08 18:20:11 +02:00
|
|
|
#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 )
|
2017-04-08 18:20:11 +02:00
|
|
|
ivar_hash = {}
|
2018-03-15 12:52:56 +01:00
|
|
|
self.each do |node|
|
|
|
|
next unless node.is_a?(InstanceVariable) or node.is_a?(IvarAssignment)
|
|
|
|
ivar_hash[node.name] = :Object
|
|
|
|
end
|
2017-04-08 18:20:11 +02:00
|
|
|
@clazz.set_instance_type( Parfait::Type.for_hash( @clazz , ivar_hash ) )
|
2017-04-08 11:11:52 +02:00
|
|
|
end
|
2017-04-01 14:57:39 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|