class Opal::Nodes::LocalVariableNode

def compile

def compile
  return push(var_name.to_s) unless using_irb?
  with_temp do |tmp|
    push property(var_name.to_s)
    wrap "((#{tmp} = Opal.irb_vars", ") == null ? nil : #{tmp})"
  end
end

def using_irb?

def using_irb?
  compiler.irb? && scope.top?
end