Class: Opal::Nodes::ReturnNode

Inherits:
Base
  • Object
show all
Defined in:
opal/lib/opal/nodes/logic.rb

Instance Attribute Summary

Attributes inherited from Base

#compiler, #type

Instance Method Summary collapse

Methods inherited from Base

#add_gvar, #add_ivar, #add_local, #add_temp, #children, children, #class_variable_owner, #class_variable_owner_nesting_level, #comments, #compile_to_fragments, #error, #expr, #expr?, #expr_or_nil, #fragment, handle, handlers, #has_rescue_else?, #helper, #in_ensure, #in_ensure?, #in_while?, #initialize, #process, #push, #recv, #recv?, #s, #scope, #stmt, #stmt?, truthy_optimize?, #unshift, #while_loop, #with_temp, #wrap

Methods included from Helpers

#conditional_send, #current_indent, #empty_line, #indent, #js_falsy, #js_truthy, #js_truthy_optimize, #line, #mid_to_jsid, #property, #valid_name?

Constructor Details

This class inherits a constructor from Opal::Nodes::Base

Instance Method Details

#compileObject



217
218
219
220
221
222
223
224
225
226
# File 'opal/lib/opal/nodes/logic.rb', line 217

def compile
  if def_scope = scope_to_catch_return
    def_scope.catch_return = true
    push 'Opal.ret(', return_val, ')'
  elsif stmt?
    push 'return ', return_val
  else
    raise SyntaxError, 'void value expression: cannot return as an expression'
  end
end

#return_expr_in_def?Boolean

Returns:

  • (Boolean)


209
210
211
# File 'opal/lib/opal/nodes/logic.rb', line 209

def return_expr_in_def?
  return scope if expr? && scope.def?
end

#return_in_iter?Boolean

Returns:

  • (Boolean)


203
204
205
206
207
# File 'opal/lib/opal/nodes/logic.rb', line 203

def return_in_iter?
  if scope.iter? && parent_def = scope.find_parent_def
    parent_def
  end
end

#return_valObject



193
194
195
196
197
198
199
200
201
# File 'opal/lib/opal/nodes/logic.rb', line 193

def return_val
  if value.nil?
    expr(s(:nil))
  elsif children.size > 1
    expr(s(:array, *children))
  else
    expr(value)
  end
end

#scope_to_catch_returnObject



213
214
215
# File 'opal/lib/opal/nodes/logic.rb', line 213

def scope_to_catch_return
  return_in_iter? || return_expr_in_def?
end