rubyx/lib/ruby/method_statement.rb
Torsten Rüger d1f8733623 Rename Vool to Sol
Simple is really the descriptive name for the layer
Sure, it is "virtual" but that is not as important as the fact that it is simple (or simplified)
Also objct (based really) is better, since orientated implies it is a little like that, but only orientated, not really it. Sol only has objects, nothing else
Just cause i was renaming anyway
2019-10-04 00:38:47 +03:00

47 lines
1.4 KiB
Ruby

module Ruby
class MethodStatement < Statement
attr_reader :name, :args , :body
def initialize( name , args , body)
@name , @args , @body = name , args , body
raise "no bod" unless @body
end
# At the moment normalizing means creating implicit returns for some cases
# see replace_return for details.
def normalized_body
return replace_return( @body ) unless @body.is_a?(Statements)
body = Statements.new( @body.statements.dup )
body << replace_return( body.pop )
end
def to_sol
body = normalized_body
Sol::MethodExpression.new( @name , @args.dup , body.to_sol)
end
def replace_return(statement)
case statement
when SendStatement , YieldStatement, Variable , Constant
return ReturnStatement.new( statement )
when IvarAssignment
ret = ReturnStatement.new( InstanceVariable.new(statement.name) )
return Statements.new([statement , ret])
when LocalAssignment
ret = ReturnStatement.new( LocalVariable.new(statement.name) )
return Statements.new([statement , ret])
when ReturnStatement , IfStatement , WhileStatement ,RubyBlockStatement
return statement
else
raise "Not implemented implicit return #{statement.class}"
end
end
def to_s(depth = 0)
arg_str = @args.collect{|a| a.to_s}.join(', ')
at_depth(depth , "def #{name}(#{arg_str})\n #{@body.to_s(1)}\nend")
end
end
end