2018-07-19 13:46:51 +02:00
|
|
|
module Ruby
|
|
|
|
class MethodStatement < Statement
|
2019-09-19 19:48:21 +02:00
|
|
|
attr_reader :name, :args , :body
|
2018-07-19 13:46:51 +02:00
|
|
|
|
2019-09-19 19:48:21 +02:00
|
|
|
def initialize( name , args , body)
|
2018-07-19 13:46:51 +02:00
|
|
|
@name , @args , @body = name , args , body
|
|
|
|
raise "no bod" unless @body
|
|
|
|
end
|
|
|
|
|
2019-08-19 14:56:15 +02:00
|
|
|
# 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
|
|
|
|
|
2019-10-03 23:36:49 +02:00
|
|
|
def to_sol
|
2019-08-19 14:56:15 +02:00
|
|
|
body = normalized_body
|
2019-10-03 23:36:49 +02:00
|
|
|
Sol::MethodExpression.new( @name , @args.dup , body.to_sol)
|
2018-07-19 13:46:51 +02:00
|
|
|
end
|
|
|
|
|
2019-08-17 22:27:55 +02:00
|
|
|
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])
|
2019-08-19 09:40:22 +02:00
|
|
|
when ReturnStatement , IfStatement , WhileStatement ,RubyBlockStatement
|
2019-08-17 22:27:55 +02:00
|
|
|
return statement
|
|
|
|
else
|
|
|
|
raise "Not implemented implicit return #{statement.class}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-07-19 13:46:51 +02:00
|
|
|
def to_s(depth = 0)
|
|
|
|
arg_str = @args.collect{|a| a.to_s}.join(', ')
|
2019-09-24 16:25:19 +02:00
|
|
|
at_depth(depth , "def #{name}(#{arg_str})\n #{@body.to_s(1)}\nend")
|
2018-07-19 13:46:51 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|