2015-09-27 11:58:54 +02:00
|
|
|
module Bosl
|
|
|
|
Compiler.class_eval do
|
|
|
|
|
|
|
|
def on_class_field expression
|
2015-09-27 15:06:48 +02:00
|
|
|
#puts expression.inspect
|
2015-09-27 11:58:54 +02:00
|
|
|
type , name , value = *expression
|
|
|
|
|
2015-10-05 23:27:13 +02:00
|
|
|
for_class = @clazz
|
|
|
|
raise "no class" unless for_class
|
2015-09-27 11:58:54 +02:00
|
|
|
index = for_class.object_layout.variable_index(name)
|
2015-09-27 15:06:48 +02:00
|
|
|
#raise "class field already defined:#{name} for class #{for_class.name}" if index
|
2015-09-27 11:58:54 +02:00
|
|
|
puts "Define field #{name} on class #{for_class.name}"
|
|
|
|
index = for_class.object_layout.add_instance_variable( name ) #TODO need typing
|
|
|
|
|
|
|
|
if value
|
|
|
|
value = process( value )
|
|
|
|
raise "value #{value}" #tbc
|
|
|
|
end
|
|
|
|
|
|
|
|
Virtual::Return.new( index )
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|