class Opal::Nodes::Args::FakeArgNode

^
def m(a = 1, b); end
Ruby code that gets initialized later in the function body.
This argument represents an argument from the
Compiles a fake argument produced by the InlineArgs rewriter.

def compile

def compile
  name = scope.next_temp
  scope.add_arg name
  push name
end