rubyx/lib/phisol/compiler/field_def.rb

16 lines
507 B
Ruby
Raw Normal View History

2015-10-07 14:22:47 +02:00
module Phisol
2015-09-20 15:30:07 +02:00
Compiler.class_eval do
include AST::Sexp
2015-09-20 15:30:07 +02:00
def on_field_def statement
reset_regs # field_def is a statement, no return and all regs
2015-10-16 12:12:52 +02:00
#puts statement.inspect
type , name , value = *statement
@method.ensure_local( name, type ) unless( @method.has_arg(name))
# if there is a value assigned, process it as am assignemnt statement (kind of call on_assign)
process( s(:assignment , s(:name , name) , value ) ) if value
return nil
2015-09-20 15:30:07 +02:00
end
end
end