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



142
143
144
145
146
147
148
149
150
151
# File 'opal/lib/opal/nodes/logic.rb', line 142

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
    error 'void value expression: cannot return as an expression'
  end
end

#return_expr_in_def?Boolean

Returns:

  • (Boolean)


134
135
136
# File 'opal/lib/opal/nodes/logic.rb', line 134

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

#return_in_iter?Boolean

Returns:

  • (Boolean)


128
129
130
131
132
# File 'opal/lib/opal/nodes/logic.rb', line 128

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

#return_valObject



118
119
120
121
122
123
124
125
126
# File 'opal/lib/opal/nodes/logic.rb', line 118

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



138
139
140
# File 'opal/lib/opal/nodes/logic.rb', line 138

def scope_to_catch_return
  return_in_iter? || return_expr_in_def?
end