Class: Opal::Nodes::ConstGetNode
- Defined in:
- opal/lib/opal/nodes/constants.rb
Constant Summary
Constants included from Helpers
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
Methods inherited from Base
#add_ivar, #add_local, #add_temp, children, #children, #compile_to_fragments, #error, #expr, #expr?, #expr_or_nil, #fragment, handle, handlers, #helper, #in_while?, #initialize, #process, #push, #recv, #recv?, #s, #scope, #stmt, #stmt?, #unshift, #while_loop, #with_temp, #wrap
Methods included from Helpers
#current_indent, #empty_line, #indent, #js_falsy, #js_truthy, #js_truthy_optimize, #line, #lvar_to_js, #mid_to_jsid, #property, #reserved?, #variable
Constructor Details
This class inherits a constructor from Opal::Nodes::Base
Instance Method Details
#compile ⇒ Object
51 52 53 54 55 56 57 58 59 60 61 62 63 |
# File 'opal/lib/opal/nodes/constants.rb', line 51 def compile if compiler.const_missing? with_temp do |tmp| push "((#{tmp} = (" push expr(base) push ")._scope).#{name} == null ? #{tmp}.cm('#{name}') : " push "#{tmp}.#{name})" end else push expr(base) wrap '(', ")._scope.#{name}" end end |