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