rubyx/lib/boot/boot_class.rb

49 lines
1.5 KiB
Ruby
Raw Normal View History

2014-06-03 19:47:06 +02:00
require_relative "meta_class"
2014-06-13 22:51:53 +02:00
module Boot
# class is mainly a list of methods with a name (for now)
# layout of object is seperated into Layout
2014-06-26 16:52:15 +02:00
class BootClass < Virtual::ObjectConstant
2014-07-16 18:24:41 +02:00
def initialize name , super_class_name = :Object
2014-06-03 19:47:06 +02:00
super()
# class methods
2014-07-16 18:24:41 +02:00
@method_definitions = []
@name = name.to_sym
2014-07-16 18:24:41 +02:00
@super_class_name = super_class_name.to_sym
2014-06-03 19:47:06 +02:00
@meta_class = MetaClass.new(self)
end
2014-08-07 14:41:13 +02:00
attr_reader :name , :methods , :meta_class , :context , :super_class_name
2014-07-14 13:06:09 +02:00
def attributes
2014-08-07 14:41:13 +02:00
[:name , :super_class_name]
2014-07-14 13:06:09 +02:00
end
2014-07-16 18:24:41 +02:00
def add_method_definition method
raise "not a method #{method.class} #{method.inspect}" unless method.is_a? Virtual::MethodDefinition
raise "syserr " unless method.name.is_a? Symbol
2014-07-16 18:24:41 +02:00
@method_definitions << method
end
2014-07-16 18:24:41 +02:00
def get_method_definition fname
fname = fname.to_sym
2014-07-16 18:24:41 +02:00
f = @method_definitions.detect{ |f| f.name == fname }
names = @method_definitions.collect{|f| f.name }
f
end
# get the method and if not found, try superclasses. raise error if not found
def resolve_method name
fun = get_method name
unless fun or name == :Object
2014-07-16 18:24:41 +02:00
supr = @context.object_space.get_or_create_class(@super_class_name)
fun = supr.get_method name
puts "#{supr.methods.collect(&:name)} for #{name} GOT #{fun.class}" if name == :index_of
end
2014-06-13 22:41:45 +02:00
raise "Method not found :#{name}, for #{inspect}" unless fun
fun
end
def to_s
inspect
end
end
end