@jsjoeio/code-server
Version:
Run VS Code on a remote server.
87 lines (85 loc) • 3.33 kB
JavaScript
"use strict";
/*---------------------------------------------------------
* Copyright (C) Microsoft Corporation. All rights reserved.
*--------------------------------------------------------*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.cannotLoadEnvVarsFromFile = exports.cannotLaunchBecauseJsNotFound = exports.cannotLaunchBecauseOutFiles = exports.cannotLaunchBecauseSourceMaps = exports.unknownConsoleType = exports.cannotDebugExtension = exports.cannotLaunchDebugTarget = exports.cannotLaunchInTerminal = exports.runtimeNotFound = void 0;
const nls = require("vscode-nls");
const vscode_chrome_debug_core_1 = require("vscode-chrome-debug-core");
const localize = nls.loadMessageBundle(__filename);
function runtimeNotFound(_runtime) {
return new vscode_chrome_debug_core_1.ErrorWithMessage({
id: 2001,
format: localize(0, null, '{_runtime}'),
variables: { _runtime }
});
}
exports.runtimeNotFound = runtimeNotFound;
function cannotLaunchInTerminal(_error) {
return new vscode_chrome_debug_core_1.ErrorWithMessage({
id: 2011,
format: localize(1, null, '{_error}'),
variables: { _error }
});
}
exports.cannotLaunchInTerminal = cannotLaunchInTerminal;
function cannotLaunchDebugTarget(_error) {
return new vscode_chrome_debug_core_1.ErrorWithMessage({
id: 2017,
format: localize(2, null, '{_error}'),
variables: { _error },
showUser: true,
sendTelemetry: true
});
}
exports.cannotLaunchDebugTarget = cannotLaunchDebugTarget;
function cannotDebugExtension(_error) {
return new vscode_chrome_debug_core_1.ErrorWithMessage({
id: 2035,
format: localize(3, null, '{_error}'),
variables: { _error },
showUser: true,
sendTelemetry: true
});
}
exports.cannotDebugExtension = cannotDebugExtension;
function unknownConsoleType(consoleType) {
return new vscode_chrome_debug_core_1.ErrorWithMessage({
id: 2028,
format: localize(4, null, consoleType)
});
}
exports.unknownConsoleType = unknownConsoleType;
function cannotLaunchBecauseSourceMaps(programPath) {
return new vscode_chrome_debug_core_1.ErrorWithMessage({
id: 2002,
format: localize(5, null, '{path}'),
variables: { path: programPath }
});
}
exports.cannotLaunchBecauseSourceMaps = cannotLaunchBecauseSourceMaps;
function cannotLaunchBecauseOutFiles(programPath) {
return new vscode_chrome_debug_core_1.ErrorWithMessage({
id: 2003,
format: localize(6, null, '{path}', 'outFiles'),
variables: { path: programPath }
});
}
exports.cannotLaunchBecauseOutFiles = cannotLaunchBecauseOutFiles;
function cannotLaunchBecauseJsNotFound(programPath) {
return new vscode_chrome_debug_core_1.ErrorWithMessage({
id: 2009,
format: localize(7, null, '{path}'),
variables: { path: programPath }
});
}
exports.cannotLaunchBecauseJsNotFound = cannotLaunchBecauseJsNotFound;
function cannotLoadEnvVarsFromFile(error) {
return new vscode_chrome_debug_core_1.ErrorWithMessage({
id: 2029,
format: localize(8, null, '{_error}'),
variables: { _error: error }
});
}
exports.cannotLoadEnvVarsFromFile = cannotLoadEnvVarsFromFile;
//# sourceMappingURL=errors.js.map