class Object

I honestly have no idea why this Object delegation is needed I keep staring at bootsnap and it doesn't have to do this is there a bug in their implementation they haven't caught or am I doing something different?

Private Instance Methods

load(path, wrap = false) click to toggle source
# File lib/dead_end/auto.rb, line 43
def load(path, wrap = false)
  Kernel.load(path, wrap)
rescue SyntaxError => e
  DeadEnd.handle_error(e)
end
require(path) click to toggle source
# File lib/dead_end/auto.rb, line 49
def require(path)
  Kernel.require(path)
rescue SyntaxError => e
  DeadEnd.handle_error(e)
end