2015-10-23 13:22:55 +02:00
|
|
|
module Soml
|
2015-09-27 11:58:54 +02:00
|
|
|
Compiler.class_eval do
|
|
|
|
|
2015-10-09 16:51:14 +02:00
|
|
|
def on_class_field statement
|
|
|
|
#puts statement.inspect
|
|
|
|
type , name , value = *statement
|
2015-09-27 11:58:54 +02:00
|
|
|
|
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-10-15 09:27:06 +02:00
|
|
|
#puts "Define field #{name} on class #{for_class.name}"
|
2015-10-29 11:45:29 +01:00
|
|
|
index = for_class.object_layout.add_instance_variable( name , type )
|
2015-09-27 11:58:54 +02:00
|
|
|
|
2015-10-26 12:08:40 +01:00
|
|
|
# not sure how to run class code yet. later
|
|
|
|
raise "value #{value}" if value
|
2015-09-27 11:58:54 +02:00
|
|
|
|
2015-10-16 17:16:39 +02:00
|
|
|
return nil # statements don't reurn values, only expressions
|
2015-09-27 11:58:54 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|