Method: Rubex::AST::Expression::Colon2#generate_evaluation_code

Defined in:
lib/rubex/ast/expression/binary/colon2.rb

#generate_evaluation_code(code, local_scope) ⇒ Object



16
17
18
# File 'lib/rubex/ast/expression/binary/colon2.rb', line 16

def generate_evaluation_code code, local_scope
  @c_code = recursive_scoping_generation @lhs, @rhs, "rb_const_get(CLASS_OF(#{local_scope.self_name}), rb_intern(\"#{@lhs}\"))"
end