}
public DynJSRuntime(Vertx vertx, NodynConfig config, boolean controlLifeCycle) {
super(config, vertx, controlLifeCycle);
Config dynjsConfig = new Config(config.getClassLoader());
dynjsConfig.setExposeDebugAs("v8debug");
this.runtime = new DynJS(dynjsConfig);
this.runner = this.runtime.newRunner(config.getDebug());
if (config.getDebug()) {