Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
this.hasLean = false;
}
} else {
this.hasLean = true;
}
}
this.workingDirectory = workspace.rootPath;
this.options = config.get('extraOptions') || [];
this.options.push('-M');
this.options.push('' + config.get('memoryLimit'));
this.options.push('-T');
this.options.push('' + config.get('timeLimit'));
this.transport = new ProcessTransport(
this.executablePath, this.workingDirectory, this.options);
super.connect();
this.restarted.fire(null);
} catch (e) {
this.requestRestart(e.message);
}
}