rubyx/lib/phisol/compiler/field_def.rb

18 lines
312 B
Ruby
Raw Normal View History

2015-10-07 15:22:47 +03:00
module Phisol
2015-09-20 16:30:07 +03:00
Compiler.class_eval do
def on_field_def statement
#puts statement.inspect
type , name , value = *statement
2015-09-27 12:59:26 +03:00
index = @method.ensure_local( name , type )
2015-09-20 16:30:07 +03:00
if value
value = process( value )
end
2015-09-27 16:06:48 +03:00
Virtual::Return.new( type , value )
2015-09-20 16:30:07 +03:00
end
end
end