class Opal::Nodes::BaseSuperNode

def compile_method_body

def compile_method_body
  push ', '
  if scope.def?
    push super_method_invocation
  elsif scope.iter?
    push super_block_invocation
  else
    raise 'super must be called from method body or block'
  end
end