class Opal::Context

def require_file(path)

passes the require through to the underlying context.
Require the given id as if it was required in the context. This simply
def require_file(path)
  setup_v8
  eval "opal.run(function() {opal.require('#{path}');});", path
  finish
end