class Opal::Nodes::CallNode

def compile_using_refined_send


Opal.refined_send(a, 'b', [c], block, [[Opal.MyRefinements]])

a.b(c, &block)
@example

Compiles method call using `Opal.refined_send`
def compile_using_refined_send
  helper :refined_send
  push '$refined_send('
  compile_refinements
  compile_receiver
  compile_method_name
  compile_arguments
  compile_block_pass
  push ')'
end