mirror of
https://github.com/neocities/neocities.git
synced 2025-04-29 19:48:00 +02:00
21642 lines
1,017 KiB
JavaScript
21642 lines
1,017 KiB
JavaScript
/*!-----------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Version: 0.52.0(f6dc0eb8fce67e57f6036f4769d92c1666cdf546)
|
||
* Released under the MIT license
|
||
* https://github.com/microsoft/vscode/blob/main/LICENSE.txt
|
||
*-----------------------------------------------------------*/
|
||
|
||
(function() {
|
||
var __m = ["require","exports","vs/editor/common/core/range","vs/base/common/errors","vs/editor/common/core/position","vs/editor/common/core/offsetRange","vs/base/common/strings","vs/base/common/arrays","vs/base/common/lifecycle","vs/base/common/event","vs/editor/common/diff/defaultLinesDiffComputer/algorithms/diffAlgorithm","vs/base/common/platform","vs/base/common/assert","vs/editor/common/core/lineRange","vs/base/common/uri","vs/base/common/arraysFind","vs/editor/common/diff/defaultLinesDiffComputer/utils","vs/editor/common/diff/rangeMapping","vs/base/common/functional","vs/base/common/iterator","vs/base/common/linkedList","vs/base/common/map","vs/base/common/stopwatch","vs/base/common/cancellation","vs/base/common/diff/diff","vs/base/common/types","vs/base/common/codiconsUtil","vs/base/common/objects","vs/base/common/uint","vs/editor/common/core/characterClassifier","vs/editor/common/core/textLength","vs/editor/common/core/wordHelper","vs/editor/common/diff/defaultLinesDiffComputer/algorithms/myersDiffAlgorithm","vs/editor/common/diff/defaultLinesDiffComputer/linesSliceCharSequence","vs/editor/common/diff/linesDiffComputer","vs/nls.messages","vs/nls","vs/base/common/path","vs/base/common/network","vs/base/common/cache","vs/base/common/color","vs/base/common/diff/diffChange","vs/base/common/keyCodes","vs/base/common/lazy","vs/base/common/hash","vs/base/common/symbols","vs/base/common/codiconsLibrary","vs/base/common/codicons","vs/editor/common/core/selection","vs/editor/common/core/positionToOffset","vs/editor/common/core/textEdit","vs/editor/common/core/wordCharacterClassifier","vs/editor/common/diff/defaultLinesDiffComputer/heuristicSequenceOptimizations","vs/editor/common/diff/defaultLinesDiffComputer/lineSequence","vs/editor/common/diff/defaultLinesDiffComputer/algorithms/dynamicProgrammingDiffing","vs/editor/common/diff/defaultLinesDiffComputer/computeMovedLines","vs/editor/common/diff/defaultLinesDiffComputer/defaultLinesDiffComputer","vs/editor/common/diff/legacyLinesDiffComputer","vs/editor/common/diff/linesDiffComputers","vs/editor/common/languages/defaultDocumentColorsComputer","vs/editor/common/languages/linkComputer","vs/editor/common/languages/supports/inplaceReplaceSupport","vs/editor/common/model","vs/editor/common/model/prefixSumComputer","vs/editor/common/model/mirrorTextModel","vs/editor/common/model/textModelSearch","vs/editor/common/services/editorWorkerHost","vs/editor/common/services/findSectionHeaders","vs/editor/common/services/unicodeTextModelHighlighter","vs/editor/common/standalone/standaloneEnums","vs/editor/common/tokenizationRegistry","vs/base/common/async","vs/base/common/process","vs/editor/common/languages","vs/editor/common/services/editorBaseApi","vs/editor/common/services/textModelSync/textModelSync.impl","vs/base/common/worker/simpleWorker","vs/editor/common/services/editorSimpleWorker"];
|
||
var __M = function(deps) {
|
||
var result = [];
|
||
for (var i = 0, len = deps.length; i < len; i++) {
|
||
result[i] = __m[deps[i]];
|
||
}
|
||
return result;
|
||
};
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
'use strict';
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
/*---------------------------------------------------------------------------------------------
|
||
*---------------------------------------------------------------------------------------------
|
||
*---------------------------------------------------------------------------------------------
|
||
*---------------------------------------------------------------------------------------------
|
||
*---------------------------------------------------------------------------------------------
|
||
* Please make sure to make edits in the .ts file at https://github.com/microsoft/vscode-loader/
|
||
*---------------------------------------------------------------------------------------------
|
||
*---------------------------------------------------------------------------------------------
|
||
*---------------------------------------------------------------------------------------------
|
||
*---------------------------------------------------------------------------------------------
|
||
*--------------------------------------------------------------------------------------------*/
|
||
const _amdLoaderGlobal = this;
|
||
const _commonjsGlobal = typeof global === 'object' ? global : {};
|
||
var AMDLoader;
|
||
(function (AMDLoader) {
|
||
AMDLoader.global = _amdLoaderGlobal;
|
||
class Environment {
|
||
get isWindows() {
|
||
this._detect();
|
||
return this._isWindows;
|
||
}
|
||
get isNode() {
|
||
this._detect();
|
||
return this._isNode;
|
||
}
|
||
get isElectronRenderer() {
|
||
this._detect();
|
||
return this._isElectronRenderer;
|
||
}
|
||
get isWebWorker() {
|
||
this._detect();
|
||
return this._isWebWorker;
|
||
}
|
||
get isElectronNodeIntegrationWebWorker() {
|
||
this._detect();
|
||
return this._isElectronNodeIntegrationWebWorker;
|
||
}
|
||
constructor() {
|
||
this._detected = false;
|
||
this._isWindows = false;
|
||
this._isNode = false;
|
||
this._isElectronRenderer = false;
|
||
this._isWebWorker = false;
|
||
this._isElectronNodeIntegrationWebWorker = false;
|
||
}
|
||
_detect() {
|
||
if (this._detected) {
|
||
return;
|
||
}
|
||
this._detected = true;
|
||
this._isWindows = Environment._isWindows();
|
||
this._isNode = (typeof module !== 'undefined' && !!module.exports);
|
||
this._isElectronRenderer = (typeof process !== 'undefined' && typeof process.versions !== 'undefined' && typeof process.versions.electron !== 'undefined' && process.type === 'renderer');
|
||
this._isWebWorker = (typeof AMDLoader.global.importScripts === 'function');
|
||
this._isElectronNodeIntegrationWebWorker = this._isWebWorker && (typeof process !== 'undefined' && typeof process.versions !== 'undefined' && typeof process.versions.electron !== 'undefined' && process.type === 'worker');
|
||
}
|
||
static _isWindows() {
|
||
if (typeof navigator !== 'undefined') {
|
||
if (navigator.userAgent && navigator.userAgent.indexOf('Windows') >= 0) {
|
||
return true;
|
||
}
|
||
}
|
||
if (typeof process !== 'undefined') {
|
||
return (process.platform === 'win32');
|
||
}
|
||
return false;
|
||
}
|
||
}
|
||
AMDLoader.Environment = Environment;
|
||
})(AMDLoader || (AMDLoader = {}));
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
var AMDLoader;
|
||
(function (AMDLoader) {
|
||
class LoaderEvent {
|
||
constructor(type, detail, timestamp) {
|
||
this.type = type;
|
||
this.detail = detail;
|
||
this.timestamp = timestamp;
|
||
}
|
||
}
|
||
AMDLoader.LoaderEvent = LoaderEvent;
|
||
class LoaderEventRecorder {
|
||
constructor(loaderAvailableTimestamp) {
|
||
this._events = [new LoaderEvent(1 /* LoaderEventType.LoaderAvailable */, '', loaderAvailableTimestamp)];
|
||
}
|
||
record(type, detail) {
|
||
this._events.push(new LoaderEvent(type, detail, AMDLoader.Utilities.getHighPerformanceTimestamp()));
|
||
}
|
||
getEvents() {
|
||
return this._events;
|
||
}
|
||
}
|
||
AMDLoader.LoaderEventRecorder = LoaderEventRecorder;
|
||
class NullLoaderEventRecorder {
|
||
record(type, detail) {
|
||
// Nothing to do
|
||
}
|
||
getEvents() {
|
||
return [];
|
||
}
|
||
}
|
||
NullLoaderEventRecorder.INSTANCE = new NullLoaderEventRecorder();
|
||
AMDLoader.NullLoaderEventRecorder = NullLoaderEventRecorder;
|
||
})(AMDLoader || (AMDLoader = {}));
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
var AMDLoader;
|
||
(function (AMDLoader) {
|
||
class Utilities {
|
||
/**
|
||
* This method does not take care of / vs \
|
||
*/
|
||
static fileUriToFilePath(isWindows, uri) {
|
||
uri = decodeURI(uri).replace(/%23/g, '#');
|
||
if (isWindows) {
|
||
if (/^file:\/\/\//.test(uri)) {
|
||
// This is a URI without a hostname => return only the path segment
|
||
return uri.substr(8);
|
||
}
|
||
if (/^file:\/\//.test(uri)) {
|
||
return uri.substr(5);
|
||
}
|
||
}
|
||
else {
|
||
if (/^file:\/\//.test(uri)) {
|
||
return uri.substr(7);
|
||
}
|
||
}
|
||
// Not sure...
|
||
return uri;
|
||
}
|
||
static startsWith(haystack, needle) {
|
||
return haystack.length >= needle.length && haystack.substr(0, needle.length) === needle;
|
||
}
|
||
static endsWith(haystack, needle) {
|
||
return haystack.length >= needle.length && haystack.substr(haystack.length - needle.length) === needle;
|
||
}
|
||
// only check for "?" before "#" to ensure that there is a real Query-String
|
||
static containsQueryString(url) {
|
||
return /^[^\#]*\?/gi.test(url);
|
||
}
|
||
/**
|
||
* Does `url` start with http:// or https:// or file:// or / ?
|
||
*/
|
||
static isAbsolutePath(url) {
|
||
return /^((http:\/\/)|(https:\/\/)|(file:\/\/)|(\/))/.test(url);
|
||
}
|
||
static forEachProperty(obj, callback) {
|
||
if (obj) {
|
||
let key;
|
||
for (key in obj) {
|
||
if (obj.hasOwnProperty(key)) {
|
||
callback(key, obj[key]);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
static isEmpty(obj) {
|
||
let isEmpty = true;
|
||
Utilities.forEachProperty(obj, () => {
|
||
isEmpty = false;
|
||
});
|
||
return isEmpty;
|
||
}
|
||
static recursiveClone(obj) {
|
||
if (!obj || typeof obj !== 'object' || obj instanceof RegExp) {
|
||
return obj;
|
||
}
|
||
if (!Array.isArray(obj) && Object.getPrototypeOf(obj) !== Object.prototype) {
|
||
// only clone "simple" objects
|
||
return obj;
|
||
}
|
||
let result = Array.isArray(obj) ? [] : {};
|
||
Utilities.forEachProperty(obj, (key, value) => {
|
||
if (value && typeof value === 'object') {
|
||
result[key] = Utilities.recursiveClone(value);
|
||
}
|
||
else {
|
||
result[key] = value;
|
||
}
|
||
});
|
||
return result;
|
||
}
|
||
static generateAnonymousModule() {
|
||
return '===anonymous' + (Utilities.NEXT_ANONYMOUS_ID++) + '===';
|
||
}
|
||
static isAnonymousModule(id) {
|
||
return Utilities.startsWith(id, '===anonymous');
|
||
}
|
||
static getHighPerformanceTimestamp() {
|
||
if (!this.PERFORMANCE_NOW_PROBED) {
|
||
this.PERFORMANCE_NOW_PROBED = true;
|
||
this.HAS_PERFORMANCE_NOW = (AMDLoader.global.performance && typeof AMDLoader.global.performance.now === 'function');
|
||
}
|
||
return (this.HAS_PERFORMANCE_NOW ? AMDLoader.global.performance.now() : Date.now());
|
||
}
|
||
}
|
||
Utilities.NEXT_ANONYMOUS_ID = 1;
|
||
Utilities.PERFORMANCE_NOW_PROBED = false;
|
||
Utilities.HAS_PERFORMANCE_NOW = false;
|
||
AMDLoader.Utilities = Utilities;
|
||
})(AMDLoader || (AMDLoader = {}));
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
var AMDLoader;
|
||
(function (AMDLoader) {
|
||
function ensureError(err) {
|
||
if (err instanceof Error) {
|
||
return err;
|
||
}
|
||
const result = new Error(err.message || String(err) || 'Unknown Error');
|
||
if (err.stack) {
|
||
result.stack = err.stack;
|
||
}
|
||
return result;
|
||
}
|
||
AMDLoader.ensureError = ensureError;
|
||
;
|
||
class ConfigurationOptionsUtil {
|
||
/**
|
||
* Ensure configuration options make sense
|
||
*/
|
||
static validateConfigurationOptions(options) {
|
||
function defaultOnError(err) {
|
||
if (err.phase === 'loading') {
|
||
console.error('Loading "' + err.moduleId + '" failed');
|
||
console.error(err);
|
||
console.error('Here are the modules that depend on it:');
|
||
console.error(err.neededBy);
|
||
return;
|
||
}
|
||
if (err.phase === 'factory') {
|
||
console.error('The factory function of "' + err.moduleId + '" has thrown an exception');
|
||
console.error(err);
|
||
console.error('Here are the modules that depend on it:');
|
||
console.error(err.neededBy);
|
||
return;
|
||
}
|
||
}
|
||
options = options || {};
|
||
if (typeof options.baseUrl !== 'string') {
|
||
options.baseUrl = '';
|
||
}
|
||
if (typeof options.isBuild !== 'boolean') {
|
||
options.isBuild = false;
|
||
}
|
||
if (typeof options.paths !== 'object') {
|
||
options.paths = {};
|
||
}
|
||
if (typeof options.config !== 'object') {
|
||
options.config = {};
|
||
}
|
||
if (typeof options.catchError === 'undefined') {
|
||
options.catchError = false;
|
||
}
|
||
if (typeof options.recordStats === 'undefined') {
|
||
options.recordStats = false;
|
||
}
|
||
if (typeof options.urlArgs !== 'string') {
|
||
options.urlArgs = '';
|
||
}
|
||
if (typeof options.onError !== 'function') {
|
||
options.onError = defaultOnError;
|
||
}
|
||
if (!Array.isArray(options.ignoreDuplicateModules)) {
|
||
options.ignoreDuplicateModules = [];
|
||
}
|
||
if (options.baseUrl.length > 0) {
|
||
if (!AMDLoader.Utilities.endsWith(options.baseUrl, '/')) {
|
||
options.baseUrl += '/';
|
||
}
|
||
}
|
||
if (typeof options.cspNonce !== 'string') {
|
||
options.cspNonce = '';
|
||
}
|
||
if (typeof options.preferScriptTags === 'undefined') {
|
||
options.preferScriptTags = false;
|
||
}
|
||
if (options.nodeCachedData && typeof options.nodeCachedData === 'object') {
|
||
if (typeof options.nodeCachedData.seed !== 'string') {
|
||
options.nodeCachedData.seed = 'seed';
|
||
}
|
||
if (typeof options.nodeCachedData.writeDelay !== 'number' || options.nodeCachedData.writeDelay < 0) {
|
||
options.nodeCachedData.writeDelay = 1000 * 7;
|
||
}
|
||
if (!options.nodeCachedData.path || typeof options.nodeCachedData.path !== 'string') {
|
||
const err = ensureError(new Error('INVALID cached data configuration, \'path\' MUST be set'));
|
||
err.phase = 'configuration';
|
||
options.onError(err);
|
||
options.nodeCachedData = undefined;
|
||
}
|
||
}
|
||
return options;
|
||
}
|
||
static mergeConfigurationOptions(overwrite = null, base = null) {
|
||
let result = AMDLoader.Utilities.recursiveClone(base || {});
|
||
// Merge known properties and overwrite the unknown ones
|
||
AMDLoader.Utilities.forEachProperty(overwrite, (key, value) => {
|
||
if (key === 'ignoreDuplicateModules' && typeof result.ignoreDuplicateModules !== 'undefined') {
|
||
result.ignoreDuplicateModules = result.ignoreDuplicateModules.concat(value);
|
||
}
|
||
else if (key === 'paths' && typeof result.paths !== 'undefined') {
|
||
AMDLoader.Utilities.forEachProperty(value, (key2, value2) => result.paths[key2] = value2);
|
||
}
|
||
else if (key === 'config' && typeof result.config !== 'undefined') {
|
||
AMDLoader.Utilities.forEachProperty(value, (key2, value2) => result.config[key2] = value2);
|
||
}
|
||
else {
|
||
result[key] = AMDLoader.Utilities.recursiveClone(value);
|
||
}
|
||
});
|
||
return ConfigurationOptionsUtil.validateConfigurationOptions(result);
|
||
}
|
||
}
|
||
AMDLoader.ConfigurationOptionsUtil = ConfigurationOptionsUtil;
|
||
class Configuration {
|
||
constructor(env, options) {
|
||
this._env = env;
|
||
this.options = ConfigurationOptionsUtil.mergeConfigurationOptions(options);
|
||
this._createIgnoreDuplicateModulesMap();
|
||
this._createSortedPathsRules();
|
||
if (this.options.baseUrl === '') {
|
||
if (this.options.nodeRequire && this.options.nodeRequire.main && this.options.nodeRequire.main.filename && this._env.isNode) {
|
||
let nodeMain = this.options.nodeRequire.main.filename;
|
||
let dirnameIndex = Math.max(nodeMain.lastIndexOf('/'), nodeMain.lastIndexOf('\\'));
|
||
this.options.baseUrl = nodeMain.substring(0, dirnameIndex + 1);
|
||
}
|
||
}
|
||
}
|
||
_createIgnoreDuplicateModulesMap() {
|
||
// Build a map out of the ignoreDuplicateModules array
|
||
this.ignoreDuplicateModulesMap = {};
|
||
for (let i = 0; i < this.options.ignoreDuplicateModules.length; i++) {
|
||
this.ignoreDuplicateModulesMap[this.options.ignoreDuplicateModules[i]] = true;
|
||
}
|
||
}
|
||
_createSortedPathsRules() {
|
||
// Create an array our of the paths rules, sorted descending by length to
|
||
// result in a more specific -> less specific order
|
||
this.sortedPathsRules = [];
|
||
AMDLoader.Utilities.forEachProperty(this.options.paths, (from, to) => {
|
||
if (!Array.isArray(to)) {
|
||
this.sortedPathsRules.push({
|
||
from: from,
|
||
to: [to]
|
||
});
|
||
}
|
||
else {
|
||
this.sortedPathsRules.push({
|
||
from: from,
|
||
to: to
|
||
});
|
||
}
|
||
});
|
||
this.sortedPathsRules.sort((a, b) => {
|
||
return b.from.length - a.from.length;
|
||
});
|
||
}
|
||
/**
|
||
* Clone current configuration and overwrite options selectively.
|
||
* @param options The selective options to overwrite with.
|
||
* @result A new configuration
|
||
*/
|
||
cloneAndMerge(options) {
|
||
return new Configuration(this._env, ConfigurationOptionsUtil.mergeConfigurationOptions(options, this.options));
|
||
}
|
||
/**
|
||
* Get current options bag. Useful for passing it forward to plugins.
|
||
*/
|
||
getOptionsLiteral() {
|
||
return this.options;
|
||
}
|
||
_applyPaths(moduleId) {
|
||
let pathRule;
|
||
for (let i = 0, len = this.sortedPathsRules.length; i < len; i++) {
|
||
pathRule = this.sortedPathsRules[i];
|
||
if (AMDLoader.Utilities.startsWith(moduleId, pathRule.from)) {
|
||
let result = [];
|
||
for (let j = 0, lenJ = pathRule.to.length; j < lenJ; j++) {
|
||
result.push(pathRule.to[j] + moduleId.substr(pathRule.from.length));
|
||
}
|
||
return result;
|
||
}
|
||
}
|
||
return [moduleId];
|
||
}
|
||
_addUrlArgsToUrl(url) {
|
||
if (AMDLoader.Utilities.containsQueryString(url)) {
|
||
return url + '&' + this.options.urlArgs;
|
||
}
|
||
else {
|
||
return url + '?' + this.options.urlArgs;
|
||
}
|
||
}
|
||
_addUrlArgsIfNecessaryToUrl(url) {
|
||
if (this.options.urlArgs) {
|
||
return this._addUrlArgsToUrl(url);
|
||
}
|
||
return url;
|
||
}
|
||
_addUrlArgsIfNecessaryToUrls(urls) {
|
||
if (this.options.urlArgs) {
|
||
for (let i = 0, len = urls.length; i < len; i++) {
|
||
urls[i] = this._addUrlArgsToUrl(urls[i]);
|
||
}
|
||
}
|
||
return urls;
|
||
}
|
||
/**
|
||
* Transform a module id to a location. Appends .js to module ids
|
||
*/
|
||
moduleIdToPaths(moduleId) {
|
||
if (this._env.isNode) {
|
||
const isNodeModule = (this.options.amdModulesPattern instanceof RegExp
|
||
&& !this.options.amdModulesPattern.test(moduleId));
|
||
if (isNodeModule) {
|
||
// This is a node module...
|
||
if (this.isBuild()) {
|
||
// ...and we are at build time, drop it
|
||
return ['empty:'];
|
||
}
|
||
else {
|
||
// ...and at runtime we create a `shortcut`-path
|
||
return ['node|' + moduleId];
|
||
}
|
||
}
|
||
}
|
||
let result = moduleId;
|
||
let results;
|
||
if (!AMDLoader.Utilities.endsWith(result, '.js') && !AMDLoader.Utilities.isAbsolutePath(result)) {
|
||
results = this._applyPaths(result);
|
||
for (let i = 0, len = results.length; i < len; i++) {
|
||
if (this.isBuild() && results[i] === 'empty:') {
|
||
continue;
|
||
}
|
||
if (!AMDLoader.Utilities.isAbsolutePath(results[i])) {
|
||
results[i] = this.options.baseUrl + results[i];
|
||
}
|
||
if (!AMDLoader.Utilities.endsWith(results[i], '.js') && !AMDLoader.Utilities.containsQueryString(results[i])) {
|
||
results[i] = results[i] + '.js';
|
||
}
|
||
}
|
||
}
|
||
else {
|
||
if (!AMDLoader.Utilities.endsWith(result, '.js') && !AMDLoader.Utilities.containsQueryString(result)) {
|
||
result = result + '.js';
|
||
}
|
||
results = [result];
|
||
}
|
||
return this._addUrlArgsIfNecessaryToUrls(results);
|
||
}
|
||
/**
|
||
* Transform a module id or url to a location.
|
||
*/
|
||
requireToUrl(url) {
|
||
let result = url;
|
||
if (!AMDLoader.Utilities.isAbsolutePath(result)) {
|
||
result = this._applyPaths(result)[0];
|
||
if (!AMDLoader.Utilities.isAbsolutePath(result)) {
|
||
result = this.options.baseUrl + result;
|
||
}
|
||
}
|
||
return this._addUrlArgsIfNecessaryToUrl(result);
|
||
}
|
||
/**
|
||
* Flag to indicate if current execution is as part of a build.
|
||
*/
|
||
isBuild() {
|
||
return this.options.isBuild;
|
||
}
|
||
shouldInvokeFactory(strModuleId) {
|
||
if (!this.options.isBuild) {
|
||
// outside of a build, all factories should be invoked
|
||
return true;
|
||
}
|
||
// during a build, only explicitly marked or anonymous modules get their factories invoked
|
||
if (AMDLoader.Utilities.isAnonymousModule(strModuleId)) {
|
||
return true;
|
||
}
|
||
if (this.options.buildForceInvokeFactory && this.options.buildForceInvokeFactory[strModuleId]) {
|
||
return true;
|
||
}
|
||
return false;
|
||
}
|
||
/**
|
||
* Test if module `moduleId` is expected to be defined multiple times
|
||
*/
|
||
isDuplicateMessageIgnoredFor(moduleId) {
|
||
return this.ignoreDuplicateModulesMap.hasOwnProperty(moduleId);
|
||
}
|
||
/**
|
||
* Get the configuration settings for the provided module id
|
||
*/
|
||
getConfigForModule(moduleId) {
|
||
if (this.options.config) {
|
||
return this.options.config[moduleId];
|
||
}
|
||
}
|
||
/**
|
||
* Should errors be caught when executing module factories?
|
||
*/
|
||
shouldCatchError() {
|
||
return this.options.catchError;
|
||
}
|
||
/**
|
||
* Should statistics be recorded?
|
||
*/
|
||
shouldRecordStats() {
|
||
return this.options.recordStats;
|
||
}
|
||
/**
|
||
* Forward an error to the error handler.
|
||
*/
|
||
onError(err) {
|
||
this.options.onError(err);
|
||
}
|
||
}
|
||
AMDLoader.Configuration = Configuration;
|
||
})(AMDLoader || (AMDLoader = {}));
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
var AMDLoader;
|
||
(function (AMDLoader) {
|
||
/**
|
||
* Load `scriptSrc` only once (avoid multiple <script> tags)
|
||
*/
|
||
class OnlyOnceScriptLoader {
|
||
constructor(env) {
|
||
this._env = env;
|
||
this._scriptLoader = null;
|
||
this._callbackMap = {};
|
||
}
|
||
load(moduleManager, scriptSrc, callback, errorback) {
|
||
if (!this._scriptLoader) {
|
||
if (this._env.isWebWorker) {
|
||
this._scriptLoader = new WorkerScriptLoader();
|
||
}
|
||
else if (this._env.isElectronRenderer) {
|
||
const { preferScriptTags } = moduleManager.getConfig().getOptionsLiteral();
|
||
if (preferScriptTags) {
|
||
this._scriptLoader = new BrowserScriptLoader();
|
||
}
|
||
else {
|
||
this._scriptLoader = new NodeScriptLoader(this._env);
|
||
}
|
||
}
|
||
else if (this._env.isNode) {
|
||
this._scriptLoader = new NodeScriptLoader(this._env);
|
||
}
|
||
else {
|
||
this._scriptLoader = new BrowserScriptLoader();
|
||
}
|
||
}
|
||
let scriptCallbacks = {
|
||
callback: callback,
|
||
errorback: errorback
|
||
};
|
||
if (this._callbackMap.hasOwnProperty(scriptSrc)) {
|
||
this._callbackMap[scriptSrc].push(scriptCallbacks);
|
||
return;
|
||
}
|
||
this._callbackMap[scriptSrc] = [scriptCallbacks];
|
||
this._scriptLoader.load(moduleManager, scriptSrc, () => this.triggerCallback(scriptSrc), (err) => this.triggerErrorback(scriptSrc, err));
|
||
}
|
||
triggerCallback(scriptSrc) {
|
||
let scriptCallbacks = this._callbackMap[scriptSrc];
|
||
delete this._callbackMap[scriptSrc];
|
||
for (let i = 0; i < scriptCallbacks.length; i++) {
|
||
scriptCallbacks[i].callback();
|
||
}
|
||
}
|
||
triggerErrorback(scriptSrc, err) {
|
||
let scriptCallbacks = this._callbackMap[scriptSrc];
|
||
delete this._callbackMap[scriptSrc];
|
||
for (let i = 0; i < scriptCallbacks.length; i++) {
|
||
scriptCallbacks[i].errorback(err);
|
||
}
|
||
}
|
||
}
|
||
class BrowserScriptLoader {
|
||
/**
|
||
* Attach load / error listeners to a script element and remove them when either one has fired.
|
||
* Implemented for browsers supporting HTML5 standard 'load' and 'error' events.
|
||
*/
|
||
attachListeners(script, callback, errorback) {
|
||
let unbind = () => {
|
||
script.removeEventListener('load', loadEventListener);
|
||
script.removeEventListener('error', errorEventListener);
|
||
};
|
||
let loadEventListener = (e) => {
|
||
unbind();
|
||
callback();
|
||
};
|
||
let errorEventListener = (e) => {
|
||
unbind();
|
||
errorback(e);
|
||
};
|
||
script.addEventListener('load', loadEventListener);
|
||
script.addEventListener('error', errorEventListener);
|
||
}
|
||
load(moduleManager, scriptSrc, callback, errorback) {
|
||
if (/^node\|/.test(scriptSrc)) {
|
||
let opts = moduleManager.getConfig().getOptionsLiteral();
|
||
let nodeRequire = ensureRecordedNodeRequire(moduleManager.getRecorder(), (opts.nodeRequire || AMDLoader.global.nodeRequire));
|
||
let pieces = scriptSrc.split('|');
|
||
let moduleExports = null;
|
||
try {
|
||
moduleExports = nodeRequire(pieces[1]);
|
||
}
|
||
catch (err) {
|
||
errorback(err);
|
||
return;
|
||
}
|
||
moduleManager.enqueueDefineAnonymousModule([], () => moduleExports);
|
||
callback();
|
||
}
|
||
else {
|
||
let script = document.createElement('script');
|
||
script.setAttribute('async', 'async');
|
||
script.setAttribute('type', 'text/javascript');
|
||
this.attachListeners(script, callback, errorback);
|
||
const { trustedTypesPolicy } = moduleManager.getConfig().getOptionsLiteral();
|
||
if (trustedTypesPolicy) {
|
||
scriptSrc = trustedTypesPolicy.createScriptURL(scriptSrc);
|
||
}
|
||
script.setAttribute('src', scriptSrc);
|
||
// Propagate CSP nonce to dynamically created script tag.
|
||
const { cspNonce } = moduleManager.getConfig().getOptionsLiteral();
|
||
if (cspNonce) {
|
||
script.setAttribute('nonce', cspNonce);
|
||
}
|
||
document.getElementsByTagName('head')[0].appendChild(script);
|
||
}
|
||
}
|
||
}
|
||
function canUseEval(moduleManager) {
|
||
const { trustedTypesPolicy } = moduleManager.getConfig().getOptionsLiteral();
|
||
try {
|
||
const func = (trustedTypesPolicy
|
||
? self.eval(trustedTypesPolicy.createScript('', 'true')) // CodeQL [SM01632] the loader is responsible with loading code, fetch + eval is used on the web worker instead of importScripts if possible because importScripts is synchronous and we observed deadlocks on Safari
|
||
: new Function('true') // CodeQL [SM01632] the loader is responsible with loading code, fetch + eval is used on the web worker instead of importScripts if possible because importScripts is synchronous and we observed deadlocks on Safari
|
||
);
|
||
func.call(self);
|
||
return true;
|
||
}
|
||
catch (err) {
|
||
return false;
|
||
}
|
||
}
|
||
class WorkerScriptLoader {
|
||
constructor() {
|
||
this._cachedCanUseEval = null;
|
||
}
|
||
_canUseEval(moduleManager) {
|
||
if (this._cachedCanUseEval === null) {
|
||
this._cachedCanUseEval = canUseEval(moduleManager);
|
||
}
|
||
return this._cachedCanUseEval;
|
||
}
|
||
load(moduleManager, scriptSrc, callback, errorback) {
|
||
if (/^node\|/.test(scriptSrc)) {
|
||
const opts = moduleManager.getConfig().getOptionsLiteral();
|
||
const nodeRequire = ensureRecordedNodeRequire(moduleManager.getRecorder(), (opts.nodeRequire || AMDLoader.global.nodeRequire));
|
||
const pieces = scriptSrc.split('|');
|
||
let moduleExports = null;
|
||
try {
|
||
moduleExports = nodeRequire(pieces[1]);
|
||
}
|
||
catch (err) {
|
||
errorback(err);
|
||
return;
|
||
}
|
||
moduleManager.enqueueDefineAnonymousModule([], function () { return moduleExports; });
|
||
callback();
|
||
}
|
||
else {
|
||
const { trustedTypesPolicy } = moduleManager.getConfig().getOptionsLiteral();
|
||
const isCrossOrigin = (/^((http:)|(https:)|(file:))/.test(scriptSrc) && scriptSrc.substring(0, self.origin.length) !== self.origin);
|
||
if (!isCrossOrigin && this._canUseEval(moduleManager)) {
|
||
// use `fetch` if possible because `importScripts`
|
||
// is synchronous and can lead to deadlocks on Safari
|
||
fetch(scriptSrc).then((response) => {
|
||
if (response.status !== 200) {
|
||
throw new Error(response.statusText);
|
||
}
|
||
return response.text();
|
||
}).then((text) => {
|
||
text = `${text}\n//# sourceURL=${scriptSrc}`;
|
||
const func = (trustedTypesPolicy
|
||
? self.eval(trustedTypesPolicy.createScript('', text)) // CodeQL [SM01632] the loader is responsible with loading code, fetch + eval is used on the web worker instead of importScripts if possible because importScripts is synchronous and we observed deadlocks on Safari
|
||
: new Function(text) // CodeQL [SM01632] the loader is responsible with loading code, fetch + eval is used on the web worker instead of importScripts if possible because importScripts is synchronous and we observed deadlocks on Safari
|
||
);
|
||
func.call(self);
|
||
callback();
|
||
}).then(undefined, errorback);
|
||
return;
|
||
}
|
||
try {
|
||
if (trustedTypesPolicy) {
|
||
scriptSrc = trustedTypesPolicy.createScriptURL(scriptSrc);
|
||
}
|
||
importScripts(scriptSrc);
|
||
callback();
|
||
}
|
||
catch (e) {
|
||
errorback(e);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
class NodeScriptLoader {
|
||
constructor(env) {
|
||
this._env = env;
|
||
this._didInitialize = false;
|
||
this._didPatchNodeRequire = false;
|
||
}
|
||
_init(nodeRequire) {
|
||
if (this._didInitialize) {
|
||
return;
|
||
}
|
||
this._didInitialize = true;
|
||
// capture node modules
|
||
this._fs = nodeRequire('fs');
|
||
this._vm = nodeRequire('vm');
|
||
this._path = nodeRequire('path');
|
||
this._crypto = nodeRequire('crypto');
|
||
}
|
||
// patch require-function of nodejs such that we can manually create a script
|
||
// from cached data. this is done by overriding the `Module._compile` function
|
||
_initNodeRequire(nodeRequire, moduleManager) {
|
||
// It is important to check for `nodeCachedData` first and then set `_didPatchNodeRequire`.
|
||
// That's because `nodeCachedData` is set _after_ calling this for the first time...
|
||
const { nodeCachedData } = moduleManager.getConfig().getOptionsLiteral();
|
||
if (!nodeCachedData) {
|
||
return;
|
||
}
|
||
if (this._didPatchNodeRequire) {
|
||
return;
|
||
}
|
||
this._didPatchNodeRequire = true;
|
||
const that = this;
|
||
const Module = nodeRequire('module');
|
||
function makeRequireFunction(mod) {
|
||
const Module = mod.constructor;
|
||
let require = function require(path) {
|
||
try {
|
||
return mod.require(path);
|
||
}
|
||
finally {
|
||
// nothing
|
||
}
|
||
};
|
||
require.resolve = function resolve(request, options) {
|
||
return Module._resolveFilename(request, mod, false, options);
|
||
};
|
||
require.resolve.paths = function paths(request) {
|
||
return Module._resolveLookupPaths(request, mod);
|
||
};
|
||
require.main = process.mainModule;
|
||
require.extensions = Module._extensions;
|
||
require.cache = Module._cache;
|
||
return require;
|
||
}
|
||
Module.prototype._compile = function (content, filename) {
|
||
// remove shebang and create wrapper function
|
||
const scriptSource = Module.wrap(content.replace(/^#!.*/, ''));
|
||
// create script
|
||
const recorder = moduleManager.getRecorder();
|
||
const cachedDataPath = that._getCachedDataPath(nodeCachedData, filename);
|
||
const options = { filename };
|
||
let hashData;
|
||
try {
|
||
const data = that._fs.readFileSync(cachedDataPath);
|
||
hashData = data.slice(0, 16);
|
||
options.cachedData = data.slice(16);
|
||
recorder.record(60 /* LoaderEventType.CachedDataFound */, cachedDataPath);
|
||
}
|
||
catch (_e) {
|
||
recorder.record(61 /* LoaderEventType.CachedDataMissed */, cachedDataPath);
|
||
}
|
||
const script = new that._vm.Script(scriptSource, options);
|
||
const compileWrapper = script.runInThisContext(options);
|
||
// run script
|
||
const dirname = that._path.dirname(filename);
|
||
const require = makeRequireFunction(this);
|
||
const args = [this.exports, require, this, filename, dirname, process, _commonjsGlobal, Buffer];
|
||
const result = compileWrapper.apply(this.exports, args);
|
||
// cached data aftermath
|
||
that._handleCachedData(script, scriptSource, cachedDataPath, !options.cachedData, moduleManager);
|
||
that._verifyCachedData(script, scriptSource, cachedDataPath, hashData, moduleManager);
|
||
return result;
|
||
};
|
||
}
|
||
load(moduleManager, scriptSrc, callback, errorback) {
|
||
const opts = moduleManager.getConfig().getOptionsLiteral();
|
||
const nodeRequire = ensureRecordedNodeRequire(moduleManager.getRecorder(), (opts.nodeRequire || AMDLoader.global.nodeRequire));
|
||
const nodeInstrumenter = (opts.nodeInstrumenter || function (c) { return c; });
|
||
this._init(nodeRequire);
|
||
this._initNodeRequire(nodeRequire, moduleManager);
|
||
let recorder = moduleManager.getRecorder();
|
||
if (/^node\|/.test(scriptSrc)) {
|
||
let pieces = scriptSrc.split('|');
|
||
let moduleExports = null;
|
||
try {
|
||
moduleExports = nodeRequire(pieces[1]);
|
||
}
|
||
catch (err) {
|
||
errorback(err);
|
||
return;
|
||
}
|
||
moduleManager.enqueueDefineAnonymousModule([], () => moduleExports);
|
||
callback();
|
||
}
|
||
else {
|
||
scriptSrc = AMDLoader.Utilities.fileUriToFilePath(this._env.isWindows, scriptSrc);
|
||
const normalizedScriptSrc = this._path.normalize(scriptSrc);
|
||
const vmScriptPathOrUri = this._getElectronRendererScriptPathOrUri(normalizedScriptSrc);
|
||
const wantsCachedData = Boolean(opts.nodeCachedData);
|
||
const cachedDataPath = wantsCachedData ? this._getCachedDataPath(opts.nodeCachedData, scriptSrc) : undefined;
|
||
this._readSourceAndCachedData(normalizedScriptSrc, cachedDataPath, recorder, (err, data, cachedData, hashData) => {
|
||
if (err) {
|
||
errorback(err);
|
||
return;
|
||
}
|
||
let scriptSource;
|
||
if (data.charCodeAt(0) === NodeScriptLoader._BOM) {
|
||
scriptSource = NodeScriptLoader._PREFIX + data.substring(1) + NodeScriptLoader._SUFFIX;
|
||
}
|
||
else {
|
||
scriptSource = NodeScriptLoader._PREFIX + data + NodeScriptLoader._SUFFIX;
|
||
}
|
||
scriptSource = nodeInstrumenter(scriptSource, normalizedScriptSrc);
|
||
const scriptOpts = { filename: vmScriptPathOrUri, cachedData };
|
||
const script = this._createAndEvalScript(moduleManager, scriptSource, scriptOpts, callback, errorback);
|
||
this._handleCachedData(script, scriptSource, cachedDataPath, wantsCachedData && !cachedData, moduleManager);
|
||
this._verifyCachedData(script, scriptSource, cachedDataPath, hashData, moduleManager);
|
||
});
|
||
}
|
||
}
|
||
_createAndEvalScript(moduleManager, contents, options, callback, errorback) {
|
||
const recorder = moduleManager.getRecorder();
|
||
recorder.record(31 /* LoaderEventType.NodeBeginEvaluatingScript */, options.filename);
|
||
const script = new this._vm.Script(contents, options);
|
||
const ret = script.runInThisContext(options);
|
||
const globalDefineFunc = moduleManager.getGlobalAMDDefineFunc();
|
||
let receivedDefineCall = false;
|
||
const localDefineFunc = function () {
|
||
receivedDefineCall = true;
|
||
return globalDefineFunc.apply(null, arguments);
|
||
};
|
||
localDefineFunc.amd = globalDefineFunc.amd;
|
||
ret.call(AMDLoader.global, moduleManager.getGlobalAMDRequireFunc(), localDefineFunc, options.filename, this._path.dirname(options.filename));
|
||
recorder.record(32 /* LoaderEventType.NodeEndEvaluatingScript */, options.filename);
|
||
if (receivedDefineCall) {
|
||
callback();
|
||
}
|
||
else {
|
||
errorback(new Error(`Didn't receive define call in ${options.filename}!`));
|
||
}
|
||
return script;
|
||
}
|
||
_getElectronRendererScriptPathOrUri(path) {
|
||
if (!this._env.isElectronRenderer) {
|
||
return path;
|
||
}
|
||
let driveLetterMatch = path.match(/^([a-z])\:(.*)/i);
|
||
if (driveLetterMatch) {
|
||
// windows
|
||
return `file:///${(driveLetterMatch[1].toUpperCase() + ':' + driveLetterMatch[2]).replace(/\\/g, '/')}`;
|
||
}
|
||
else {
|
||
// nix
|
||
return `file://${path}`;
|
||
}
|
||
}
|
||
_getCachedDataPath(config, filename) {
|
||
const hash = this._crypto.createHash('md5').update(filename, 'utf8').update(config.seed, 'utf8').update(process.arch, '').digest('hex');
|
||
const basename = this._path.basename(filename).replace(/\.js$/, '');
|
||
return this._path.join(config.path, `${basename}-${hash}.code`);
|
||
}
|
||
_handleCachedData(script, scriptSource, cachedDataPath, createCachedData, moduleManager) {
|
||
if (script.cachedDataRejected) {
|
||
// cached data got rejected -> delete and re-create
|
||
this._fs.unlink(cachedDataPath, err => {
|
||
moduleManager.getRecorder().record(62 /* LoaderEventType.CachedDataRejected */, cachedDataPath);
|
||
this._createAndWriteCachedData(script, scriptSource, cachedDataPath, moduleManager);
|
||
if (err) {
|
||
moduleManager.getConfig().onError(err);
|
||
}
|
||
});
|
||
}
|
||
else if (createCachedData) {
|
||
// no cached data, but wanted
|
||
this._createAndWriteCachedData(script, scriptSource, cachedDataPath, moduleManager);
|
||
}
|
||
}
|
||
// Cached data format: | SOURCE_HASH | V8_CACHED_DATA |
|
||
// -SOURCE_HASH is the md5 hash of the JS source (always 16 bytes)
|
||
// -V8_CACHED_DATA is what v8 produces
|
||
_createAndWriteCachedData(script, scriptSource, cachedDataPath, moduleManager) {
|
||
let timeout = Math.ceil(moduleManager.getConfig().getOptionsLiteral().nodeCachedData.writeDelay * (1 + Math.random()));
|
||
let lastSize = -1;
|
||
let iteration = 0;
|
||
let hashData = undefined;
|
||
const createLoop = () => {
|
||
setTimeout(() => {
|
||
if (!hashData) {
|
||
hashData = this._crypto.createHash('md5').update(scriptSource, 'utf8').digest();
|
||
}
|
||
const cachedData = script.createCachedData();
|
||
if (cachedData.length === 0 || cachedData.length === lastSize || iteration >= 5) {
|
||
// done
|
||
return;
|
||
}
|
||
if (cachedData.length < lastSize) {
|
||
// less data than before: skip, try again next round
|
||
createLoop();
|
||
return;
|
||
}
|
||
lastSize = cachedData.length;
|
||
this._fs.writeFile(cachedDataPath, Buffer.concat([hashData, cachedData]), err => {
|
||
if (err) {
|
||
moduleManager.getConfig().onError(err);
|
||
}
|
||
moduleManager.getRecorder().record(63 /* LoaderEventType.CachedDataCreated */, cachedDataPath);
|
||
createLoop();
|
||
});
|
||
}, timeout * (Math.pow(4, iteration++)));
|
||
};
|
||
// with some delay (`timeout`) create cached data
|
||
// and repeat that (with backoff delay) until the
|
||
// data seems to be not changing anymore
|
||
createLoop();
|
||
}
|
||
_readSourceAndCachedData(sourcePath, cachedDataPath, recorder, callback) {
|
||
if (!cachedDataPath) {
|
||
// no cached data case
|
||
this._fs.readFile(sourcePath, { encoding: 'utf8' }, callback);
|
||
}
|
||
else {
|
||
// cached data case: read both files in parallel
|
||
let source = undefined;
|
||
let cachedData = undefined;
|
||
let hashData = undefined;
|
||
let steps = 2;
|
||
const step = (err) => {
|
||
if (err) {
|
||
callback(err);
|
||
}
|
||
else if (--steps === 0) {
|
||
callback(undefined, source, cachedData, hashData);
|
||
}
|
||
};
|
||
this._fs.readFile(sourcePath, { encoding: 'utf8' }, (err, data) => {
|
||
source = data;
|
||
step(err);
|
||
});
|
||
this._fs.readFile(cachedDataPath, (err, data) => {
|
||
if (!err && data && data.length > 0) {
|
||
hashData = data.slice(0, 16);
|
||
cachedData = data.slice(16);
|
||
recorder.record(60 /* LoaderEventType.CachedDataFound */, cachedDataPath);
|
||
}
|
||
else {
|
||
recorder.record(61 /* LoaderEventType.CachedDataMissed */, cachedDataPath);
|
||
}
|
||
step(); // ignored: cached data is optional
|
||
});
|
||
}
|
||
}
|
||
_verifyCachedData(script, scriptSource, cachedDataPath, hashData, moduleManager) {
|
||
if (!hashData) {
|
||
// nothing to do
|
||
return;
|
||
}
|
||
if (script.cachedDataRejected) {
|
||
// invalid anyways
|
||
return;
|
||
}
|
||
setTimeout(() => {
|
||
// check source hash - the contract is that file paths change when file content
|
||
// change (e.g use the commit or version id as cache path). this check is
|
||
// for violations of this contract.
|
||
const hashDataNow = this._crypto.createHash('md5').update(scriptSource, 'utf8').digest();
|
||
if (!hashData.equals(hashDataNow)) {
|
||
moduleManager.getConfig().onError(new Error(`FAILED TO VERIFY CACHED DATA, deleting stale '${cachedDataPath}' now, but a RESTART IS REQUIRED`));
|
||
this._fs.unlink(cachedDataPath, err => {
|
||
if (err) {
|
||
moduleManager.getConfig().onError(err);
|
||
}
|
||
});
|
||
}
|
||
}, Math.ceil(5000 * (1 + Math.random())));
|
||
}
|
||
}
|
||
NodeScriptLoader._BOM = 0xFEFF;
|
||
NodeScriptLoader._PREFIX = '(function (require, define, __filename, __dirname) { ';
|
||
NodeScriptLoader._SUFFIX = '\n});';
|
||
function ensureRecordedNodeRequire(recorder, _nodeRequire) {
|
||
if (_nodeRequire.__$__isRecorded) {
|
||
// it is already recorded
|
||
return _nodeRequire;
|
||
}
|
||
const nodeRequire = function nodeRequire(what) {
|
||
recorder.record(33 /* LoaderEventType.NodeBeginNativeRequire */, what);
|
||
try {
|
||
return _nodeRequire(what);
|
||
}
|
||
finally {
|
||
recorder.record(34 /* LoaderEventType.NodeEndNativeRequire */, what);
|
||
}
|
||
};
|
||
nodeRequire.__$__isRecorded = true;
|
||
return nodeRequire;
|
||
}
|
||
AMDLoader.ensureRecordedNodeRequire = ensureRecordedNodeRequire;
|
||
function createScriptLoader(env) {
|
||
return new OnlyOnceScriptLoader(env);
|
||
}
|
||
AMDLoader.createScriptLoader = createScriptLoader;
|
||
})(AMDLoader || (AMDLoader = {}));
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
var AMDLoader;
|
||
(function (AMDLoader) {
|
||
// ------------------------------------------------------------------------
|
||
// ModuleIdResolver
|
||
class ModuleIdResolver {
|
||
constructor(fromModuleId) {
|
||
let lastSlash = fromModuleId.lastIndexOf('/');
|
||
if (lastSlash !== -1) {
|
||
this.fromModulePath = fromModuleId.substr(0, lastSlash + 1);
|
||
}
|
||
else {
|
||
this.fromModulePath = '';
|
||
}
|
||
}
|
||
/**
|
||
* Normalize 'a/../name' to 'name', etc.
|
||
*/
|
||
static _normalizeModuleId(moduleId) {
|
||
let r = moduleId, pattern;
|
||
// replace /./ => /
|
||
pattern = /\/\.\//;
|
||
while (pattern.test(r)) {
|
||
r = r.replace(pattern, '/');
|
||
}
|
||
// replace ^./ => nothing
|
||
r = r.replace(/^\.\//g, '');
|
||
// replace /aa/../ => / (BUT IGNORE /../../)
|
||
pattern = /\/(([^\/])|([^\/][^\/\.])|([^\/\.][^\/])|([^\/][^\/][^\/]+))\/\.\.\//;
|
||
while (pattern.test(r)) {
|
||
r = r.replace(pattern, '/');
|
||
}
|
||
// replace ^aa/../ => nothing (BUT IGNORE ../../)
|
||
r = r.replace(/^(([^\/])|([^\/][^\/\.])|([^\/\.][^\/])|([^\/][^\/][^\/]+))\/\.\.\//, '');
|
||
return r;
|
||
}
|
||
/**
|
||
* Resolve relative module ids
|
||
*/
|
||
resolveModule(moduleId) {
|
||
let result = moduleId;
|
||
if (!AMDLoader.Utilities.isAbsolutePath(result)) {
|
||
if (AMDLoader.Utilities.startsWith(result, './') || AMDLoader.Utilities.startsWith(result, '../')) {
|
||
result = ModuleIdResolver._normalizeModuleId(this.fromModulePath + result);
|
||
}
|
||
}
|
||
return result;
|
||
}
|
||
}
|
||
ModuleIdResolver.ROOT = new ModuleIdResolver('');
|
||
AMDLoader.ModuleIdResolver = ModuleIdResolver;
|
||
// ------------------------------------------------------------------------
|
||
// Module
|
||
class Module {
|
||
constructor(id, strId, dependencies, callback, errorback, moduleIdResolver) {
|
||
this.id = id;
|
||
this.strId = strId;
|
||
this.dependencies = dependencies;
|
||
this._callback = callback;
|
||
this._errorback = errorback;
|
||
this.moduleIdResolver = moduleIdResolver;
|
||
this.exports = {};
|
||
this.error = null;
|
||
this.exportsPassedIn = false;
|
||
this.unresolvedDependenciesCount = this.dependencies.length;
|
||
this._isComplete = false;
|
||
}
|
||
static _safeInvokeFunction(callback, args) {
|
||
try {
|
||
return {
|
||
returnedValue: callback.apply(AMDLoader.global, args),
|
||
producedError: null
|
||
};
|
||
}
|
||
catch (e) {
|
||
return {
|
||
returnedValue: null,
|
||
producedError: e
|
||
};
|
||
}
|
||
}
|
||
static _invokeFactory(config, strModuleId, callback, dependenciesValues) {
|
||
if (!config.shouldInvokeFactory(strModuleId)) {
|
||
return {
|
||
returnedValue: null,
|
||
producedError: null
|
||
};
|
||
}
|
||
if (config.shouldCatchError()) {
|
||
return this._safeInvokeFunction(callback, dependenciesValues);
|
||
}
|
||
return {
|
||
returnedValue: callback.apply(AMDLoader.global, dependenciesValues),
|
||
producedError: null
|
||
};
|
||
}
|
||
complete(recorder, config, dependenciesValues, inversedependenciesProvider) {
|
||
this._isComplete = true;
|
||
let producedError = null;
|
||
if (this._callback) {
|
||
if (typeof this._callback === 'function') {
|
||
recorder.record(21 /* LoaderEventType.BeginInvokeFactory */, this.strId);
|
||
let r = Module._invokeFactory(config, this.strId, this._callback, dependenciesValues);
|
||
producedError = r.producedError;
|
||
recorder.record(22 /* LoaderEventType.EndInvokeFactory */, this.strId);
|
||
if (!producedError && typeof r.returnedValue !== 'undefined' && (!this.exportsPassedIn || AMDLoader.Utilities.isEmpty(this.exports))) {
|
||
this.exports = r.returnedValue;
|
||
}
|
||
}
|
||
else {
|
||
this.exports = this._callback;
|
||
}
|
||
}
|
||
if (producedError) {
|
||
let err = AMDLoader.ensureError(producedError);
|
||
err.phase = 'factory';
|
||
err.moduleId = this.strId;
|
||
err.neededBy = inversedependenciesProvider(this.id);
|
||
this.error = err;
|
||
config.onError(err);
|
||
}
|
||
this.dependencies = null;
|
||
this._callback = null;
|
||
this._errorback = null;
|
||
this.moduleIdResolver = null;
|
||
}
|
||
/**
|
||
* One of the direct dependencies or a transitive dependency has failed to load.
|
||
*/
|
||
onDependencyError(err) {
|
||
this._isComplete = true;
|
||
this.error = err;
|
||
if (this._errorback) {
|
||
this._errorback(err);
|
||
return true;
|
||
}
|
||
return false;
|
||
}
|
||
/**
|
||
* Is the current module complete?
|
||
*/
|
||
isComplete() {
|
||
return this._isComplete;
|
||
}
|
||
}
|
||
AMDLoader.Module = Module;
|
||
class ModuleIdProvider {
|
||
constructor() {
|
||
this._nextId = 0;
|
||
this._strModuleIdToIntModuleId = new Map();
|
||
this._intModuleIdToStrModuleId = [];
|
||
// Ensure values 0, 1, 2 are assigned accordingly with ModuleId
|
||
this.getModuleId('exports');
|
||
this.getModuleId('module');
|
||
this.getModuleId('require');
|
||
}
|
||
getMaxModuleId() {
|
||
return this._nextId;
|
||
}
|
||
getModuleId(strModuleId) {
|
||
let id = this._strModuleIdToIntModuleId.get(strModuleId);
|
||
if (typeof id === 'undefined') {
|
||
id = this._nextId++;
|
||
this._strModuleIdToIntModuleId.set(strModuleId, id);
|
||
this._intModuleIdToStrModuleId[id] = strModuleId;
|
||
}
|
||
return id;
|
||
}
|
||
getStrModuleId(moduleId) {
|
||
return this._intModuleIdToStrModuleId[moduleId];
|
||
}
|
||
}
|
||
class RegularDependency {
|
||
constructor(id) {
|
||
this.id = id;
|
||
}
|
||
}
|
||
RegularDependency.EXPORTS = new RegularDependency(0 /* ModuleId.EXPORTS */);
|
||
RegularDependency.MODULE = new RegularDependency(1 /* ModuleId.MODULE */);
|
||
RegularDependency.REQUIRE = new RegularDependency(2 /* ModuleId.REQUIRE */);
|
||
AMDLoader.RegularDependency = RegularDependency;
|
||
class PluginDependency {
|
||
constructor(id, pluginId, pluginParam) {
|
||
this.id = id;
|
||
this.pluginId = pluginId;
|
||
this.pluginParam = pluginParam;
|
||
}
|
||
}
|
||
AMDLoader.PluginDependency = PluginDependency;
|
||
class ModuleManager {
|
||
constructor(env, scriptLoader, defineFunc, requireFunc, loaderAvailableTimestamp = 0) {
|
||
this._env = env;
|
||
this._scriptLoader = scriptLoader;
|
||
this._loaderAvailableTimestamp = loaderAvailableTimestamp;
|
||
this._defineFunc = defineFunc;
|
||
this._requireFunc = requireFunc;
|
||
this._moduleIdProvider = new ModuleIdProvider();
|
||
this._config = new AMDLoader.Configuration(this._env);
|
||
this._hasDependencyCycle = false;
|
||
this._modules2 = [];
|
||
this._knownModules2 = [];
|
||
this._inverseDependencies2 = [];
|
||
this._inversePluginDependencies2 = new Map();
|
||
this._currentAnonymousDefineCall = null;
|
||
this._recorder = null;
|
||
this._buildInfoPath = [];
|
||
this._buildInfoDefineStack = [];
|
||
this._buildInfoDependencies = [];
|
||
this._requireFunc.moduleManager = this;
|
||
}
|
||
reset() {
|
||
return new ModuleManager(this._env, this._scriptLoader, this._defineFunc, this._requireFunc, this._loaderAvailableTimestamp);
|
||
}
|
||
getGlobalAMDDefineFunc() {
|
||
return this._defineFunc;
|
||
}
|
||
getGlobalAMDRequireFunc() {
|
||
return this._requireFunc;
|
||
}
|
||
static _findRelevantLocationInStack(needle, stack) {
|
||
let normalize = (str) => str.replace(/\\/g, '/');
|
||
let normalizedPath = normalize(needle);
|
||
let stackPieces = stack.split(/\n/);
|
||
for (let i = 0; i < stackPieces.length; i++) {
|
||
let m = stackPieces[i].match(/(.*):(\d+):(\d+)\)?$/);
|
||
if (m) {
|
||
let stackPath = m[1];
|
||
let stackLine = m[2];
|
||
let stackColumn = m[3];
|
||
let trimPathOffset = Math.max(stackPath.lastIndexOf(' ') + 1, stackPath.lastIndexOf('(') + 1);
|
||
stackPath = stackPath.substr(trimPathOffset);
|
||
stackPath = normalize(stackPath);
|
||
if (stackPath === normalizedPath) {
|
||
let r = {
|
||
line: parseInt(stackLine, 10),
|
||
col: parseInt(stackColumn, 10)
|
||
};
|
||
if (r.line === 1) {
|
||
r.col -= '(function (require, define, __filename, __dirname) { '.length;
|
||
}
|
||
return r;
|
||
}
|
||
}
|
||
}
|
||
throw new Error('Could not correlate define call site for needle ' + needle);
|
||
}
|
||
getBuildInfo() {
|
||
if (!this._config.isBuild()) {
|
||
return null;
|
||
}
|
||
let result = [], resultLen = 0;
|
||
for (let i = 0, len = this._modules2.length; i < len; i++) {
|
||
let m = this._modules2[i];
|
||
if (!m) {
|
||
continue;
|
||
}
|
||
let location = this._buildInfoPath[m.id] || null;
|
||
let defineStack = this._buildInfoDefineStack[m.id] || null;
|
||
let dependencies = this._buildInfoDependencies[m.id];
|
||
result[resultLen++] = {
|
||
id: m.strId,
|
||
path: location,
|
||
defineLocation: (location && defineStack ? ModuleManager._findRelevantLocationInStack(location, defineStack) : null),
|
||
dependencies: dependencies,
|
||
shim: null,
|
||
exports: m.exports
|
||
};
|
||
}
|
||
return result;
|
||
}
|
||
getRecorder() {
|
||
if (!this._recorder) {
|
||
if (this._config.shouldRecordStats()) {
|
||
this._recorder = new AMDLoader.LoaderEventRecorder(this._loaderAvailableTimestamp);
|
||
}
|
||
else {
|
||
this._recorder = AMDLoader.NullLoaderEventRecorder.INSTANCE;
|
||
}
|
||
}
|
||
return this._recorder;
|
||
}
|
||
getLoaderEvents() {
|
||
return this.getRecorder().getEvents();
|
||
}
|
||
/**
|
||
* Defines an anonymous module (without an id). Its name will be resolved as we receive a callback from the scriptLoader.
|
||
* @param dependencies @see defineModule
|
||
* @param callback @see defineModule
|
||
*/
|
||
enqueueDefineAnonymousModule(dependencies, callback) {
|
||
if (this._currentAnonymousDefineCall !== null) {
|
||
throw new Error('Can only have one anonymous define call per script file');
|
||
}
|
||
let stack = null;
|
||
if (this._config.isBuild()) {
|
||
stack = new Error('StackLocation').stack || null;
|
||
}
|
||
this._currentAnonymousDefineCall = {
|
||
stack: stack,
|
||
dependencies: dependencies,
|
||
callback: callback
|
||
};
|
||
}
|
||
/**
|
||
* Creates a module and stores it in _modules. The manager will immediately begin resolving its dependencies.
|
||
* @param strModuleId An unique and absolute id of the module. This must not collide with another module's id
|
||
* @param dependencies An array with the dependencies of the module. Special keys are: "require", "exports" and "module"
|
||
* @param callback if callback is a function, it will be called with the resolved dependencies. if callback is an object, it will be considered as the exports of the module.
|
||
*/
|
||
defineModule(strModuleId, dependencies, callback, errorback, stack, moduleIdResolver = new ModuleIdResolver(strModuleId)) {
|
||
let moduleId = this._moduleIdProvider.getModuleId(strModuleId);
|
||
if (this._modules2[moduleId]) {
|
||
if (!this._config.isDuplicateMessageIgnoredFor(strModuleId)) {
|
||
console.warn('Duplicate definition of module \'' + strModuleId + '\'');
|
||
}
|
||
// Super important! Completely ignore duplicate module definition
|
||
return;
|
||
}
|
||
let m = new Module(moduleId, strModuleId, this._normalizeDependencies(dependencies, moduleIdResolver), callback, errorback, moduleIdResolver);
|
||
this._modules2[moduleId] = m;
|
||
if (this._config.isBuild()) {
|
||
this._buildInfoDefineStack[moduleId] = stack;
|
||
this._buildInfoDependencies[moduleId] = (m.dependencies || []).map(dep => this._moduleIdProvider.getStrModuleId(dep.id));
|
||
}
|
||
// Resolving of dependencies is immediate (not in a timeout). If there's a need to support a packer that concatenates in an
|
||
// unordered manner, in order to finish processing the file, execute the following method in a timeout
|
||
this._resolve(m);
|
||
}
|
||
_normalizeDependency(dependency, moduleIdResolver) {
|
||
if (dependency === 'exports') {
|
||
return RegularDependency.EXPORTS;
|
||
}
|
||
if (dependency === 'module') {
|
||
return RegularDependency.MODULE;
|
||
}
|
||
if (dependency === 'require') {
|
||
return RegularDependency.REQUIRE;
|
||
}
|
||
// Normalize dependency and then request it from the manager
|
||
let bangIndex = dependency.indexOf('!');
|
||
if (bangIndex >= 0) {
|
||
let strPluginId = moduleIdResolver.resolveModule(dependency.substr(0, bangIndex));
|
||
let pluginParam = moduleIdResolver.resolveModule(dependency.substr(bangIndex + 1));
|
||
let dependencyId = this._moduleIdProvider.getModuleId(strPluginId + '!' + pluginParam);
|
||
let pluginId = this._moduleIdProvider.getModuleId(strPluginId);
|
||
return new PluginDependency(dependencyId, pluginId, pluginParam);
|
||
}
|
||
return new RegularDependency(this._moduleIdProvider.getModuleId(moduleIdResolver.resolveModule(dependency)));
|
||
}
|
||
_normalizeDependencies(dependencies, moduleIdResolver) {
|
||
let result = [], resultLen = 0;
|
||
for (let i = 0, len = dependencies.length; i < len; i++) {
|
||
result[resultLen++] = this._normalizeDependency(dependencies[i], moduleIdResolver);
|
||
}
|
||
return result;
|
||
}
|
||
_relativeRequire(moduleIdResolver, dependencies, callback, errorback) {
|
||
if (typeof dependencies === 'string') {
|
||
return this.synchronousRequire(dependencies, moduleIdResolver);
|
||
}
|
||
this.defineModule(AMDLoader.Utilities.generateAnonymousModule(), dependencies, callback, errorback, null, moduleIdResolver);
|
||
}
|
||
/**
|
||
* Require synchronously a module by its absolute id. If the module is not loaded, an exception will be thrown.
|
||
* @param id The unique and absolute id of the required module
|
||
* @return The exports of module 'id'
|
||
*/
|
||
synchronousRequire(_strModuleId, moduleIdResolver = new ModuleIdResolver(_strModuleId)) {
|
||
let dependency = this._normalizeDependency(_strModuleId, moduleIdResolver);
|
||
let m = this._modules2[dependency.id];
|
||
if (!m) {
|
||
throw new Error('Check dependency list! Synchronous require cannot resolve module \'' + _strModuleId + '\'. This is the first mention of this module!');
|
||
}
|
||
if (!m.isComplete()) {
|
||
throw new Error('Check dependency list! Synchronous require cannot resolve module \'' + _strModuleId + '\'. This module has not been resolved completely yet.');
|
||
}
|
||
if (m.error) {
|
||
throw m.error;
|
||
}
|
||
return m.exports;
|
||
}
|
||
configure(params, shouldOverwrite) {
|
||
let oldShouldRecordStats = this._config.shouldRecordStats();
|
||
if (shouldOverwrite) {
|
||
this._config = new AMDLoader.Configuration(this._env, params);
|
||
}
|
||
else {
|
||
this._config = this._config.cloneAndMerge(params);
|
||
}
|
||
if (this._config.shouldRecordStats() && !oldShouldRecordStats) {
|
||
this._recorder = null;
|
||
}
|
||
}
|
||
getConfig() {
|
||
return this._config;
|
||
}
|
||
/**
|
||
* Callback from the scriptLoader when a module has been loaded.
|
||
* This means its code is available and has been executed.
|
||
*/
|
||
_onLoad(moduleId) {
|
||
if (this._currentAnonymousDefineCall !== null) {
|
||
let defineCall = this._currentAnonymousDefineCall;
|
||
this._currentAnonymousDefineCall = null;
|
||
// Hit an anonymous define call
|
||
this.defineModule(this._moduleIdProvider.getStrModuleId(moduleId), defineCall.dependencies, defineCall.callback, null, defineCall.stack);
|
||
}
|
||
}
|
||
_createLoadError(moduleId, _err) {
|
||
let strModuleId = this._moduleIdProvider.getStrModuleId(moduleId);
|
||
let neededBy = (this._inverseDependencies2[moduleId] || []).map((intModuleId) => this._moduleIdProvider.getStrModuleId(intModuleId));
|
||
const err = AMDLoader.ensureError(_err);
|
||
err.phase = 'loading';
|
||
err.moduleId = strModuleId;
|
||
err.neededBy = neededBy;
|
||
return err;
|
||
}
|
||
/**
|
||
* Callback from the scriptLoader when a module hasn't been loaded.
|
||
* This means that the script was not found (e.g. 404) or there was an error in the script.
|
||
*/
|
||
_onLoadError(moduleId, err) {
|
||
const error = this._createLoadError(moduleId, err);
|
||
if (!this._modules2[moduleId]) {
|
||
this._modules2[moduleId] = new Module(moduleId, this._moduleIdProvider.getStrModuleId(moduleId), [], () => { }, null, null);
|
||
}
|
||
// Find any 'local' error handlers, walk the entire chain of inverse dependencies if necessary.
|
||
let seenModuleId = [];
|
||
for (let i = 0, len = this._moduleIdProvider.getMaxModuleId(); i < len; i++) {
|
||
seenModuleId[i] = false;
|
||
}
|
||
let someoneNotified = false;
|
||
let queue = [];
|
||
queue.push(moduleId);
|
||
seenModuleId[moduleId] = true;
|
||
while (queue.length > 0) {
|
||
let queueElement = queue.shift();
|
||
let m = this._modules2[queueElement];
|
||
if (m) {
|
||
someoneNotified = m.onDependencyError(error) || someoneNotified;
|
||
}
|
||
let inverseDeps = this._inverseDependencies2[queueElement];
|
||
if (inverseDeps) {
|
||
for (let i = 0, len = inverseDeps.length; i < len; i++) {
|
||
let inverseDep = inverseDeps[i];
|
||
if (!seenModuleId[inverseDep]) {
|
||
queue.push(inverseDep);
|
||
seenModuleId[inverseDep] = true;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
if (!someoneNotified) {
|
||
this._config.onError(error);
|
||
}
|
||
}
|
||
/**
|
||
* Walks (recursively) the dependencies of 'from' in search of 'to'.
|
||
* Returns true if there is such a path or false otherwise.
|
||
* @param from Module id to start at
|
||
* @param to Module id to look for
|
||
*/
|
||
_hasDependencyPath(fromId, toId) {
|
||
let from = this._modules2[fromId];
|
||
if (!from) {
|
||
return false;
|
||
}
|
||
let inQueue = [];
|
||
for (let i = 0, len = this._moduleIdProvider.getMaxModuleId(); i < len; i++) {
|
||
inQueue[i] = false;
|
||
}
|
||
let queue = [];
|
||
// Insert 'from' in queue
|
||
queue.push(from);
|
||
inQueue[fromId] = true;
|
||
while (queue.length > 0) {
|
||
// Pop first inserted element of queue
|
||
let element = queue.shift();
|
||
let dependencies = element.dependencies;
|
||
if (dependencies) {
|
||
// Walk the element's dependencies
|
||
for (let i = 0, len = dependencies.length; i < len; i++) {
|
||
let dependency = dependencies[i];
|
||
if (dependency.id === toId) {
|
||
// There is a path to 'to'
|
||
return true;
|
||
}
|
||
let dependencyModule = this._modules2[dependency.id];
|
||
if (dependencyModule && !inQueue[dependency.id]) {
|
||
// Insert 'dependency' in queue
|
||
inQueue[dependency.id] = true;
|
||
queue.push(dependencyModule);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
// There is no path to 'to'
|
||
return false;
|
||
}
|
||
/**
|
||
* Walks (recursively) the dependencies of 'from' in search of 'to'.
|
||
* Returns cycle as array.
|
||
* @param from Module id to start at
|
||
* @param to Module id to look for
|
||
*/
|
||
_findCyclePath(fromId, toId, depth) {
|
||
if (fromId === toId || depth === 50) {
|
||
return [fromId];
|
||
}
|
||
let from = this._modules2[fromId];
|
||
if (!from) {
|
||
return null;
|
||
}
|
||
// Walk the element's dependencies
|
||
let dependencies = from.dependencies;
|
||
if (dependencies) {
|
||
for (let i = 0, len = dependencies.length; i < len; i++) {
|
||
let path = this._findCyclePath(dependencies[i].id, toId, depth + 1);
|
||
if (path !== null) {
|
||
path.push(fromId);
|
||
return path;
|
||
}
|
||
}
|
||
}
|
||
return null;
|
||
}
|
||
/**
|
||
* Create the local 'require' that is passed into modules
|
||
*/
|
||
_createRequire(moduleIdResolver) {
|
||
let result = ((dependencies, callback, errorback) => {
|
||
return this._relativeRequire(moduleIdResolver, dependencies, callback, errorback);
|
||
});
|
||
result.toUrl = (id) => {
|
||
return this._config.requireToUrl(moduleIdResolver.resolveModule(id));
|
||
};
|
||
result.getStats = () => {
|
||
return this.getLoaderEvents();
|
||
};
|
||
result.hasDependencyCycle = () => {
|
||
return this._hasDependencyCycle;
|
||
};
|
||
result.config = (params, shouldOverwrite = false) => {
|
||
this.configure(params, shouldOverwrite);
|
||
};
|
||
result.__$__nodeRequire = AMDLoader.global.nodeRequire;
|
||
return result;
|
||
}
|
||
_loadModule(moduleId) {
|
||
if (this._modules2[moduleId] || this._knownModules2[moduleId]) {
|
||
// known module
|
||
return;
|
||
}
|
||
this._knownModules2[moduleId] = true;
|
||
let strModuleId = this._moduleIdProvider.getStrModuleId(moduleId);
|
||
let paths = this._config.moduleIdToPaths(strModuleId);
|
||
let scopedPackageRegex = /^@[^\/]+\/[^\/]+$/; // matches @scope/package-name
|
||
if (this._env.isNode && (strModuleId.indexOf('/') === -1 || scopedPackageRegex.test(strModuleId))) {
|
||
paths.push('node|' + strModuleId);
|
||
}
|
||
let lastPathIndex = -1;
|
||
let loadNextPath = (err) => {
|
||
lastPathIndex++;
|
||
if (lastPathIndex >= paths.length) {
|
||
// No more paths to try
|
||
this._onLoadError(moduleId, err);
|
||
}
|
||
else {
|
||
let currentPath = paths[lastPathIndex];
|
||
let recorder = this.getRecorder();
|
||
if (this._config.isBuild() && currentPath === 'empty:') {
|
||
this._buildInfoPath[moduleId] = currentPath;
|
||
this.defineModule(this._moduleIdProvider.getStrModuleId(moduleId), [], null, null, null);
|
||
this._onLoad(moduleId);
|
||
return;
|
||
}
|
||
recorder.record(10 /* LoaderEventType.BeginLoadingScript */, currentPath);
|
||
this._scriptLoader.load(this, currentPath, () => {
|
||
if (this._config.isBuild()) {
|
||
this._buildInfoPath[moduleId] = currentPath;
|
||
}
|
||
recorder.record(11 /* LoaderEventType.EndLoadingScriptOK */, currentPath);
|
||
this._onLoad(moduleId);
|
||
}, (err) => {
|
||
recorder.record(12 /* LoaderEventType.EndLoadingScriptError */, currentPath);
|
||
loadNextPath(err);
|
||
});
|
||
}
|
||
};
|
||
loadNextPath(null);
|
||
}
|
||
/**
|
||
* Resolve a plugin dependency with the plugin loaded & complete
|
||
* @param module The module that has this dependency
|
||
* @param pluginDependency The semi-normalized dependency that appears in the module. e.g. 'vs/css!./mycssfile'. Only the plugin part (before !) is normalized
|
||
* @param plugin The plugin (what the plugin exports)
|
||
*/
|
||
_loadPluginDependency(plugin, pluginDependency) {
|
||
if (this._modules2[pluginDependency.id] || this._knownModules2[pluginDependency.id]) {
|
||
// known module
|
||
return;
|
||
}
|
||
this._knownModules2[pluginDependency.id] = true;
|
||
// Delegate the loading of the resource to the plugin
|
||
let load = ((value) => {
|
||
this.defineModule(this._moduleIdProvider.getStrModuleId(pluginDependency.id), [], value, null, null);
|
||
});
|
||
load.error = (err) => {
|
||
this._config.onError(this._createLoadError(pluginDependency.id, err));
|
||
};
|
||
plugin.load(pluginDependency.pluginParam, this._createRequire(ModuleIdResolver.ROOT), load, this._config.getOptionsLiteral());
|
||
}
|
||
/**
|
||
* Examine the dependencies of module 'module' and resolve them as needed.
|
||
*/
|
||
_resolve(module) {
|
||
let dependencies = module.dependencies;
|
||
if (dependencies) {
|
||
for (let i = 0, len = dependencies.length; i < len; i++) {
|
||
let dependency = dependencies[i];
|
||
if (dependency === RegularDependency.EXPORTS) {
|
||
module.exportsPassedIn = true;
|
||
module.unresolvedDependenciesCount--;
|
||
continue;
|
||
}
|
||
if (dependency === RegularDependency.MODULE) {
|
||
module.unresolvedDependenciesCount--;
|
||
continue;
|
||
}
|
||
if (dependency === RegularDependency.REQUIRE) {
|
||
module.unresolvedDependenciesCount--;
|
||
continue;
|
||
}
|
||
let dependencyModule = this._modules2[dependency.id];
|
||
if (dependencyModule && dependencyModule.isComplete()) {
|
||
if (dependencyModule.error) {
|
||
module.onDependencyError(dependencyModule.error);
|
||
return;
|
||
}
|
||
module.unresolvedDependenciesCount--;
|
||
continue;
|
||
}
|
||
if (this._hasDependencyPath(dependency.id, module.id)) {
|
||
this._hasDependencyCycle = true;
|
||
console.warn('There is a dependency cycle between \'' + this._moduleIdProvider.getStrModuleId(dependency.id) + '\' and \'' + this._moduleIdProvider.getStrModuleId(module.id) + '\'. The cyclic path follows:');
|
||
let cyclePath = this._findCyclePath(dependency.id, module.id, 0) || [];
|
||
cyclePath.reverse();
|
||
cyclePath.push(dependency.id);
|
||
console.warn(cyclePath.map(id => this._moduleIdProvider.getStrModuleId(id)).join(' => \n'));
|
||
// Break the cycle
|
||
module.unresolvedDependenciesCount--;
|
||
continue;
|
||
}
|
||
// record inverse dependency
|
||
this._inverseDependencies2[dependency.id] = this._inverseDependencies2[dependency.id] || [];
|
||
this._inverseDependencies2[dependency.id].push(module.id);
|
||
if (dependency instanceof PluginDependency) {
|
||
let plugin = this._modules2[dependency.pluginId];
|
||
if (plugin && plugin.isComplete()) {
|
||
this._loadPluginDependency(plugin.exports, dependency);
|
||
continue;
|
||
}
|
||
// Record dependency for when the plugin gets loaded
|
||
let inversePluginDeps = this._inversePluginDependencies2.get(dependency.pluginId);
|
||
if (!inversePluginDeps) {
|
||
inversePluginDeps = [];
|
||
this._inversePluginDependencies2.set(dependency.pluginId, inversePluginDeps);
|
||
}
|
||
inversePluginDeps.push(dependency);
|
||
this._loadModule(dependency.pluginId);
|
||
continue;
|
||
}
|
||
this._loadModule(dependency.id);
|
||
}
|
||
}
|
||
if (module.unresolvedDependenciesCount === 0) {
|
||
this._onModuleComplete(module);
|
||
}
|
||
}
|
||
_onModuleComplete(module) {
|
||
let recorder = this.getRecorder();
|
||
if (module.isComplete()) {
|
||
// already done
|
||
return;
|
||
}
|
||
let dependencies = module.dependencies;
|
||
let dependenciesValues = [];
|
||
if (dependencies) {
|
||
for (let i = 0, len = dependencies.length; i < len; i++) {
|
||
let dependency = dependencies[i];
|
||
if (dependency === RegularDependency.EXPORTS) {
|
||
dependenciesValues[i] = module.exports;
|
||
continue;
|
||
}
|
||
if (dependency === RegularDependency.MODULE) {
|
||
dependenciesValues[i] = {
|
||
id: module.strId,
|
||
config: () => {
|
||
return this._config.getConfigForModule(module.strId);
|
||
}
|
||
};
|
||
continue;
|
||
}
|
||
if (dependency === RegularDependency.REQUIRE) {
|
||
dependenciesValues[i] = this._createRequire(module.moduleIdResolver);
|
||
continue;
|
||
}
|
||
let dependencyModule = this._modules2[dependency.id];
|
||
if (dependencyModule) {
|
||
dependenciesValues[i] = dependencyModule.exports;
|
||
continue;
|
||
}
|
||
dependenciesValues[i] = null;
|
||
}
|
||
}
|
||
const inversedependenciesProvider = (moduleId) => {
|
||
return (this._inverseDependencies2[moduleId] || []).map((intModuleId) => this._moduleIdProvider.getStrModuleId(intModuleId));
|
||
};
|
||
module.complete(recorder, this._config, dependenciesValues, inversedependenciesProvider);
|
||
// Fetch and clear inverse dependencies
|
||
let inverseDeps = this._inverseDependencies2[module.id];
|
||
this._inverseDependencies2[module.id] = null;
|
||
if (inverseDeps) {
|
||
// Resolve one inverse dependency at a time, always
|
||
// on the lookout for a completed module.
|
||
for (let i = 0, len = inverseDeps.length; i < len; i++) {
|
||
let inverseDependencyId = inverseDeps[i];
|
||
let inverseDependency = this._modules2[inverseDependencyId];
|
||
inverseDependency.unresolvedDependenciesCount--;
|
||
if (inverseDependency.unresolvedDependenciesCount === 0) {
|
||
this._onModuleComplete(inverseDependency);
|
||
}
|
||
}
|
||
}
|
||
let inversePluginDeps = this._inversePluginDependencies2.get(module.id);
|
||
if (inversePluginDeps) {
|
||
// This module is used as a plugin at least once
|
||
// Fetch and clear these inverse plugin dependencies
|
||
this._inversePluginDependencies2.delete(module.id);
|
||
// Resolve plugin dependencies one at a time
|
||
for (let i = 0, len = inversePluginDeps.length; i < len; i++) {
|
||
this._loadPluginDependency(module.exports, inversePluginDeps[i]);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
AMDLoader.ModuleManager = ModuleManager;
|
||
})(AMDLoader || (AMDLoader = {}));
|
||
var define;
|
||
var AMDLoader;
|
||
(function (AMDLoader) {
|
||
const env = new AMDLoader.Environment();
|
||
let moduleManager = null;
|
||
const DefineFunc = function (id, dependencies, callback) {
|
||
if (typeof id !== 'string') {
|
||
callback = dependencies;
|
||
dependencies = id;
|
||
id = null;
|
||
}
|
||
if (typeof dependencies !== 'object' || !Array.isArray(dependencies)) {
|
||
callback = dependencies;
|
||
dependencies = null;
|
||
}
|
||
if (!dependencies) {
|
||
dependencies = ['require', 'exports', 'module'];
|
||
}
|
||
if (id) {
|
||
moduleManager.defineModule(id, dependencies, callback, null, null);
|
||
}
|
||
else {
|
||
moduleManager.enqueueDefineAnonymousModule(dependencies, callback);
|
||
}
|
||
};
|
||
DefineFunc.amd = {
|
||
jQuery: true
|
||
};
|
||
const _requireFunc_config = function (params, shouldOverwrite = false) {
|
||
moduleManager.configure(params, shouldOverwrite);
|
||
};
|
||
const RequireFunc = function () {
|
||
if (arguments.length === 1) {
|
||
if ((arguments[0] instanceof Object) && !Array.isArray(arguments[0])) {
|
||
_requireFunc_config(arguments[0]);
|
||
return;
|
||
}
|
||
if (typeof arguments[0] === 'string') {
|
||
return moduleManager.synchronousRequire(arguments[0]);
|
||
}
|
||
}
|
||
if (arguments.length === 2 || arguments.length === 3) {
|
||
if (Array.isArray(arguments[0])) {
|
||
moduleManager.defineModule(AMDLoader.Utilities.generateAnonymousModule(), arguments[0], arguments[1], arguments[2], null);
|
||
return;
|
||
}
|
||
}
|
||
throw new Error('Unrecognized require call');
|
||
};
|
||
RequireFunc.config = _requireFunc_config;
|
||
RequireFunc.getConfig = function () {
|
||
return moduleManager.getConfig().getOptionsLiteral();
|
||
};
|
||
RequireFunc.reset = function () {
|
||
moduleManager = moduleManager.reset();
|
||
};
|
||
RequireFunc.getBuildInfo = function () {
|
||
return moduleManager.getBuildInfo();
|
||
};
|
||
RequireFunc.getStats = function () {
|
||
return moduleManager.getLoaderEvents();
|
||
};
|
||
RequireFunc.define = DefineFunc;
|
||
function init() {
|
||
if (typeof AMDLoader.global.require !== 'undefined' || typeof require !== 'undefined') {
|
||
const _nodeRequire = (AMDLoader.global.require || require);
|
||
if (typeof _nodeRequire === 'function' && typeof _nodeRequire.resolve === 'function') {
|
||
// re-expose node's require function
|
||
const nodeRequire = AMDLoader.ensureRecordedNodeRequire(moduleManager.getRecorder(), _nodeRequire);
|
||
AMDLoader.global.nodeRequire = nodeRequire;
|
||
RequireFunc.nodeRequire = nodeRequire;
|
||
RequireFunc.__$__nodeRequire = nodeRequire;
|
||
}
|
||
}
|
||
if (env.isNode && !env.isElectronRenderer && !env.isElectronNodeIntegrationWebWorker) {
|
||
module.exports = RequireFunc;
|
||
}
|
||
else {
|
||
if (!env.isElectronRenderer) {
|
||
AMDLoader.global.define = DefineFunc;
|
||
}
|
||
AMDLoader.global.require = RequireFunc;
|
||
}
|
||
}
|
||
AMDLoader.init = init;
|
||
if (typeof AMDLoader.global.define !== 'function' || !AMDLoader.global.define.amd) {
|
||
moduleManager = new AMDLoader.ModuleManager(env, AMDLoader.createScriptLoader(env), DefineFunc, RequireFunc, AMDLoader.Utilities.getHighPerformanceTimestamp());
|
||
// The global variable require can configure the loader
|
||
if (typeof AMDLoader.global.require !== 'undefined' && typeof AMDLoader.global.require !== 'function') {
|
||
RequireFunc.config(AMDLoader.global.require);
|
||
}
|
||
// This define is for the local closure defined in node in the case that the loader is concatenated
|
||
define = function () {
|
||
return DefineFunc.apply(null, arguments);
|
||
};
|
||
define.amd = DefineFunc.amd;
|
||
if (typeof doNotInitLoader === 'undefined') {
|
||
init();
|
||
}
|
||
}
|
||
})(AMDLoader || (AMDLoader = {}));
|
||
|
||
"use strict";
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
(function () {
|
||
const monacoEnvironment = globalThis.MonacoEnvironment;
|
||
const monacoBaseUrl = monacoEnvironment && monacoEnvironment.baseUrl ? monacoEnvironment.baseUrl : '../../../';
|
||
function createTrustedTypesPolicy(policyName, policyOptions) {
|
||
if (monacoEnvironment?.createTrustedTypesPolicy) {
|
||
try {
|
||
return monacoEnvironment.createTrustedTypesPolicy(policyName, policyOptions);
|
||
}
|
||
catch (err) {
|
||
console.warn(err);
|
||
return undefined;
|
||
}
|
||
}
|
||
try {
|
||
return self.trustedTypes?.createPolicy(policyName, policyOptions);
|
||
}
|
||
catch (err) {
|
||
console.warn(err);
|
||
return undefined;
|
||
}
|
||
}
|
||
const trustedTypesPolicy = createTrustedTypesPolicy('amdLoader', {
|
||
createScriptURL: value => value,
|
||
createScript: (_, ...args) => {
|
||
// workaround a chrome issue not allowing to create new functions
|
||
// see https://github.com/w3c/webappsec-trusted-types/wiki/Trusted-Types-for-function-constructor
|
||
const fnArgs = args.slice(0, -1).join(',');
|
||
const fnBody = args.pop().toString();
|
||
// Do not add a new line to fnBody, as this will confuse source maps.
|
||
const body = `(function anonymous(${fnArgs}) { ${fnBody}\n})`;
|
||
return body;
|
||
}
|
||
});
|
||
function canUseEval() {
|
||
try {
|
||
const func = (trustedTypesPolicy
|
||
? globalThis.eval(trustedTypesPolicy.createScript('', 'true')) // CodeQL [SM01632] fetch + eval is used on the web worker instead of importScripts if possible because importScripts is synchronous and we observed deadlocks on Safari
|
||
: new Function('true') // CodeQL [SM01632] fetch + eval is used on the web worker instead of importScripts if possible because importScripts is synchronous and we observed deadlocks on Safari
|
||
);
|
||
func.call(globalThis);
|
||
return true;
|
||
}
|
||
catch (err) {
|
||
return false;
|
||
}
|
||
}
|
||
function loadAMDLoader() {
|
||
return new Promise((resolve, reject) => {
|
||
if (typeof globalThis.define === 'function' && globalThis.define.amd) {
|
||
return resolve();
|
||
}
|
||
const loaderSrc = monacoBaseUrl + 'vs/loader.js';
|
||
const isCrossOrigin = (/^((http:)|(https:)|(file:))/.test(loaderSrc) && loaderSrc.substring(0, globalThis.origin.length) !== globalThis.origin);
|
||
if (!isCrossOrigin && canUseEval()) {
|
||
// use `fetch` if possible because `importScripts`
|
||
// is synchronous and can lead to deadlocks on Safari
|
||
fetch(loaderSrc).then((response) => {
|
||
if (response.status !== 200) {
|
||
throw new Error(response.statusText);
|
||
}
|
||
return response.text();
|
||
}).then((text) => {
|
||
text = `${text}\n//# sourceURL=${loaderSrc}`;
|
||
const func = (trustedTypesPolicy
|
||
? globalThis.eval(trustedTypesPolicy.createScript('', text)) // CodeQL [SM01632] fetch + eval is used on the web worker instead of importScripts if possible because importScripts is synchronous and we observed deadlocks on Safari
|
||
: new Function(text) // CodeQL [SM01632] fetch + eval is used on the web worker instead of importScripts if possible because importScripts is synchronous and we observed deadlocks on Safari
|
||
);
|
||
func.call(globalThis);
|
||
resolve();
|
||
}).then(undefined, reject);
|
||
return;
|
||
}
|
||
if (trustedTypesPolicy) {
|
||
importScripts(trustedTypesPolicy.createScriptURL(loaderSrc));
|
||
}
|
||
else {
|
||
importScripts(loaderSrc);
|
||
}
|
||
resolve();
|
||
});
|
||
}
|
||
function configureAMDLoader() {
|
||
require.config({
|
||
baseUrl: monacoBaseUrl,
|
||
catchError: true,
|
||
trustedTypesPolicy,
|
||
amdModulesPattern: /^vs\//
|
||
});
|
||
}
|
||
function loadCode(moduleId) {
|
||
// ESM-uncomment-begin
|
||
// if (typeof loadAMDLoader === 'function') { /* fixes unused import, remove me */}
|
||
// const moduleUrl = new URL(`${moduleId}.js`, globalThis._VSCODE_FILE_ROOT);
|
||
// return import(moduleUrl.href);
|
||
// ESM-uncomment-end
|
||
// ESM-comment-begin
|
||
return loadAMDLoader().then(() => {
|
||
configureAMDLoader();
|
||
return new Promise((resolve, reject) => {
|
||
require([moduleId], resolve, reject);
|
||
});
|
||
});
|
||
// ESM-comment-end
|
||
}
|
||
function setupWorkerServer(ws) {
|
||
setTimeout(function () {
|
||
const messageHandler = ws.create((msg, transfer) => {
|
||
globalThis.postMessage(msg, transfer);
|
||
});
|
||
self.onmessage = (e) => messageHandler.onmessage(e.data, e.ports);
|
||
while (beforeReadyMessages.length > 0) {
|
||
self.onmessage(beforeReadyMessages.shift());
|
||
}
|
||
}, 0);
|
||
}
|
||
// If the loader is already defined, configure it immediately
|
||
// This helps in the bundled case, where we must load nls files
|
||
// and they need a correct baseUrl to be loaded.
|
||
if (typeof globalThis.define === 'function' && globalThis.define.amd) {
|
||
configureAMDLoader();
|
||
}
|
||
let isFirstMessage = true;
|
||
const beforeReadyMessages = [];
|
||
globalThis.onmessage = (message) => {
|
||
if (!isFirstMessage) {
|
||
beforeReadyMessages.push(message);
|
||
return;
|
||
}
|
||
isFirstMessage = false;
|
||
loadCode(message.data).then((ws) => {
|
||
setupWorkerServer(ws);
|
||
}, (err) => {
|
||
console.error(err);
|
||
});
|
||
};
|
||
})();
|
||
|
||
define(__m[7/*vs/base/common/arrays*/], __M([0/*require*/,1/*exports*/]), function (require, exports) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.Permutation = exports.CallbackIterable = exports.ArrayQueue = exports.booleanComparator = exports.numberComparator = exports.CompareResult = void 0;
|
||
exports.tail = tail;
|
||
exports.tail2 = tail2;
|
||
exports.equals = equals;
|
||
exports.removeFastWithoutKeepingOrder = removeFastWithoutKeepingOrder;
|
||
exports.binarySearch = binarySearch;
|
||
exports.binarySearch2 = binarySearch2;
|
||
exports.quickSelect = quickSelect;
|
||
exports.groupBy = groupBy;
|
||
exports.groupAdjacentBy = groupAdjacentBy;
|
||
exports.forEachAdjacent = forEachAdjacent;
|
||
exports.forEachWithNeighbors = forEachWithNeighbors;
|
||
exports.coalesce = coalesce;
|
||
exports.coalesceInPlace = coalesceInPlace;
|
||
exports.isFalsyOrEmpty = isFalsyOrEmpty;
|
||
exports.isNonEmptyArray = isNonEmptyArray;
|
||
exports.distinct = distinct;
|
||
exports.firstOrDefault = firstOrDefault;
|
||
exports.range = range;
|
||
exports.arrayInsert = arrayInsert;
|
||
exports.pushToStart = pushToStart;
|
||
exports.pushToEnd = pushToEnd;
|
||
exports.pushMany = pushMany;
|
||
exports.asArray = asArray;
|
||
exports.insertInto = insertInto;
|
||
exports.splice = splice;
|
||
exports.compareBy = compareBy;
|
||
exports.tieBreakComparators = tieBreakComparators;
|
||
exports.reverseOrder = reverseOrder;
|
||
/**
|
||
* Returns the last element of an array.
|
||
* @param array The array.
|
||
* @param n Which element from the end (default is zero).
|
||
*/
|
||
function tail(array, n = 0) {
|
||
return array[array.length - (1 + n)];
|
||
}
|
||
function tail2(arr) {
|
||
if (arr.length === 0) {
|
||
throw new Error('Invalid tail call');
|
||
}
|
||
return [arr.slice(0, arr.length - 1), arr[arr.length - 1]];
|
||
}
|
||
function equals(one, other, itemEquals = (a, b) => a === b) {
|
||
if (one === other) {
|
||
return true;
|
||
}
|
||
if (!one || !other) {
|
||
return false;
|
||
}
|
||
if (one.length !== other.length) {
|
||
return false;
|
||
}
|
||
for (let i = 0, len = one.length; i < len; i++) {
|
||
if (!itemEquals(one[i], other[i])) {
|
||
return false;
|
||
}
|
||
}
|
||
return true;
|
||
}
|
||
/**
|
||
* Remove the element at `index` by replacing it with the last element. This is faster than `splice`
|
||
* but changes the order of the array
|
||
*/
|
||
function removeFastWithoutKeepingOrder(array, index) {
|
||
const last = array.length - 1;
|
||
if (index < last) {
|
||
array[index] = array[last];
|
||
}
|
||
array.pop();
|
||
}
|
||
/**
|
||
* Performs a binary search algorithm over a sorted array.
|
||
*
|
||
* @param array The array being searched.
|
||
* @param key The value we search for.
|
||
* @param comparator A function that takes two array elements and returns zero
|
||
* if they are equal, a negative number if the first element precedes the
|
||
* second one in the sorting order, or a positive number if the second element
|
||
* precedes the first one.
|
||
* @return See {@link binarySearch2}
|
||
*/
|
||
function binarySearch(array, key, comparator) {
|
||
return binarySearch2(array.length, i => comparator(array[i], key));
|
||
}
|
||
/**
|
||
* Performs a binary search algorithm over a sorted collection. Useful for cases
|
||
* when we need to perform a binary search over something that isn't actually an
|
||
* array, and converting data to an array would defeat the use of binary search
|
||
* in the first place.
|
||
*
|
||
* @param length The collection length.
|
||
* @param compareToKey A function that takes an index of an element in the
|
||
* collection and returns zero if the value at this index is equal to the
|
||
* search key, a negative number if the value precedes the search key in the
|
||
* sorting order, or a positive number if the search key precedes the value.
|
||
* @return A non-negative index of an element, if found. If not found, the
|
||
* result is -(n+1) (or ~n, using bitwise notation), where n is the index
|
||
* where the key should be inserted to maintain the sorting order.
|
||
*/
|
||
function binarySearch2(length, compareToKey) {
|
||
let low = 0, high = length - 1;
|
||
while (low <= high) {
|
||
const mid = ((low + high) / 2) | 0;
|
||
const comp = compareToKey(mid);
|
||
if (comp < 0) {
|
||
low = mid + 1;
|
||
}
|
||
else if (comp > 0) {
|
||
high = mid - 1;
|
||
}
|
||
else {
|
||
return mid;
|
||
}
|
||
}
|
||
return -(low + 1);
|
||
}
|
||
function quickSelect(nth, data, compare) {
|
||
nth = nth | 0;
|
||
if (nth >= data.length) {
|
||
throw new TypeError('invalid index');
|
||
}
|
||
const pivotValue = data[Math.floor(data.length * Math.random())];
|
||
const lower = [];
|
||
const higher = [];
|
||
const pivots = [];
|
||
for (const value of data) {
|
||
const val = compare(value, pivotValue);
|
||
if (val < 0) {
|
||
lower.push(value);
|
||
}
|
||
else if (val > 0) {
|
||
higher.push(value);
|
||
}
|
||
else {
|
||
pivots.push(value);
|
||
}
|
||
}
|
||
if (nth < lower.length) {
|
||
return quickSelect(nth, lower, compare);
|
||
}
|
||
else if (nth < lower.length + pivots.length) {
|
||
return pivots[0];
|
||
}
|
||
else {
|
||
return quickSelect(nth - (lower.length + pivots.length), higher, compare);
|
||
}
|
||
}
|
||
function groupBy(data, compare) {
|
||
const result = [];
|
||
let currentGroup = undefined;
|
||
for (const element of data.slice(0).sort(compare)) {
|
||
if (!currentGroup || compare(currentGroup[0], element) !== 0) {
|
||
currentGroup = [element];
|
||
result.push(currentGroup);
|
||
}
|
||
else {
|
||
currentGroup.push(element);
|
||
}
|
||
}
|
||
return result;
|
||
}
|
||
/**
|
||
* Splits the given items into a list of (non-empty) groups.
|
||
* `shouldBeGrouped` is used to decide if two consecutive items should be in the same group.
|
||
* The order of the items is preserved.
|
||
*/
|
||
function* groupAdjacentBy(items, shouldBeGrouped) {
|
||
let currentGroup;
|
||
let last;
|
||
for (const item of items) {
|
||
if (last !== undefined && shouldBeGrouped(last, item)) {
|
||
currentGroup.push(item);
|
||
}
|
||
else {
|
||
if (currentGroup) {
|
||
yield currentGroup;
|
||
}
|
||
currentGroup = [item];
|
||
}
|
||
last = item;
|
||
}
|
||
if (currentGroup) {
|
||
yield currentGroup;
|
||
}
|
||
}
|
||
function forEachAdjacent(arr, f) {
|
||
for (let i = 0; i <= arr.length; i++) {
|
||
f(i === 0 ? undefined : arr[i - 1], i === arr.length ? undefined : arr[i]);
|
||
}
|
||
}
|
||
function forEachWithNeighbors(arr, f) {
|
||
for (let i = 0; i < arr.length; i++) {
|
||
f(i === 0 ? undefined : arr[i - 1], arr[i], i + 1 === arr.length ? undefined : arr[i + 1]);
|
||
}
|
||
}
|
||
/**
|
||
* @returns New array with all falsy values removed. The original array IS NOT modified.
|
||
*/
|
||
function coalesce(array) {
|
||
return array.filter((e) => !!e);
|
||
}
|
||
/**
|
||
* Remove all falsy values from `array`. The original array IS modified.
|
||
*/
|
||
function coalesceInPlace(array) {
|
||
let to = 0;
|
||
for (let i = 0; i < array.length; i++) {
|
||
if (!!array[i]) {
|
||
array[to] = array[i];
|
||
to += 1;
|
||
}
|
||
}
|
||
array.length = to;
|
||
}
|
||
/**
|
||
* @returns false if the provided object is an array and not empty.
|
||
*/
|
||
function isFalsyOrEmpty(obj) {
|
||
return !Array.isArray(obj) || obj.length === 0;
|
||
}
|
||
function isNonEmptyArray(obj) {
|
||
return Array.isArray(obj) && obj.length > 0;
|
||
}
|
||
/**
|
||
* Removes duplicates from the given array. The optional keyFn allows to specify
|
||
* how elements are checked for equality by returning an alternate value for each.
|
||
*/
|
||
function distinct(array, keyFn = value => value) {
|
||
const seen = new Set();
|
||
return array.filter(element => {
|
||
const key = keyFn(element);
|
||
if (seen.has(key)) {
|
||
return false;
|
||
}
|
||
seen.add(key);
|
||
return true;
|
||
});
|
||
}
|
||
function firstOrDefault(array, notFoundValue) {
|
||
return array.length > 0 ? array[0] : notFoundValue;
|
||
}
|
||
function range(arg, to) {
|
||
let from = typeof to === 'number' ? arg : 0;
|
||
if (typeof to === 'number') {
|
||
from = arg;
|
||
}
|
||
else {
|
||
from = 0;
|
||
to = arg;
|
||
}
|
||
const result = [];
|
||
if (from <= to) {
|
||
for (let i = from; i < to; i++) {
|
||
result.push(i);
|
||
}
|
||
}
|
||
else {
|
||
for (let i = from; i > to; i--) {
|
||
result.push(i);
|
||
}
|
||
}
|
||
return result;
|
||
}
|
||
/**
|
||
* Insert `insertArr` inside `target` at `insertIndex`.
|
||
* Please don't touch unless you understand https://jsperf.com/inserting-an-array-within-an-array
|
||
*/
|
||
function arrayInsert(target, insertIndex, insertArr) {
|
||
const before = target.slice(0, insertIndex);
|
||
const after = target.slice(insertIndex);
|
||
return before.concat(insertArr, after);
|
||
}
|
||
/**
|
||
* Pushes an element to the start of the array, if found.
|
||
*/
|
||
function pushToStart(arr, value) {
|
||
const index = arr.indexOf(value);
|
||
if (index > -1) {
|
||
arr.splice(index, 1);
|
||
arr.unshift(value);
|
||
}
|
||
}
|
||
/**
|
||
* Pushes an element to the end of the array, if found.
|
||
*/
|
||
function pushToEnd(arr, value) {
|
||
const index = arr.indexOf(value);
|
||
if (index > -1) {
|
||
arr.splice(index, 1);
|
||
arr.push(value);
|
||
}
|
||
}
|
||
function pushMany(arr, items) {
|
||
for (const item of items) {
|
||
arr.push(item);
|
||
}
|
||
}
|
||
function asArray(x) {
|
||
return Array.isArray(x) ? x : [x];
|
||
}
|
||
/**
|
||
* Insert the new items in the array.
|
||
* @param array The original array.
|
||
* @param start The zero-based location in the array from which to start inserting elements.
|
||
* @param newItems The items to be inserted
|
||
*/
|
||
function insertInto(array, start, newItems) {
|
||
const startIdx = getActualStartIndex(array, start);
|
||
const originalLength = array.length;
|
||
const newItemsLength = newItems.length;
|
||
array.length = originalLength + newItemsLength;
|
||
// Move the items after the start index, start from the end so that we don't overwrite any value.
|
||
for (let i = originalLength - 1; i >= startIdx; i--) {
|
||
array[i + newItemsLength] = array[i];
|
||
}
|
||
for (let i = 0; i < newItemsLength; i++) {
|
||
array[i + startIdx] = newItems[i];
|
||
}
|
||
}
|
||
/**
|
||
* Removes elements from an array and inserts new elements in their place, returning the deleted elements. Alternative to the native Array.splice method, it
|
||
* can only support limited number of items due to the maximum call stack size limit.
|
||
* @param array The original array.
|
||
* @param start The zero-based location in the array from which to start removing elements.
|
||
* @param deleteCount The number of elements to remove.
|
||
* @returns An array containing the elements that were deleted.
|
||
*/
|
||
function splice(array, start, deleteCount, newItems) {
|
||
const index = getActualStartIndex(array, start);
|
||
let result = array.splice(index, deleteCount);
|
||
if (result === undefined) {
|
||
// see https://bugs.webkit.org/show_bug.cgi?id=261140
|
||
result = [];
|
||
}
|
||
insertInto(array, index, newItems);
|
||
return result;
|
||
}
|
||
/**
|
||
* Determine the actual start index (same logic as the native splice() or slice())
|
||
* If greater than the length of the array, start will be set to the length of the array. In this case, no element will be deleted but the method will behave as an adding function, adding as many element as item[n*] provided.
|
||
* If negative, it will begin that many elements from the end of the array. (In this case, the origin -1, meaning -n is the index of the nth last element, and is therefore equivalent to the index of array.length - n.) If array.length + start is less than 0, it will begin from index 0.
|
||
* @param array The target array.
|
||
* @param start The operation index.
|
||
*/
|
||
function getActualStartIndex(array, start) {
|
||
return start < 0 ? Math.max(start + array.length, 0) : Math.min(start, array.length);
|
||
}
|
||
var CompareResult;
|
||
(function (CompareResult) {
|
||
function isLessThan(result) {
|
||
return result < 0;
|
||
}
|
||
CompareResult.isLessThan = isLessThan;
|
||
function isLessThanOrEqual(result) {
|
||
return result <= 0;
|
||
}
|
||
CompareResult.isLessThanOrEqual = isLessThanOrEqual;
|
||
function isGreaterThan(result) {
|
||
return result > 0;
|
||
}
|
||
CompareResult.isGreaterThan = isGreaterThan;
|
||
function isNeitherLessOrGreaterThan(result) {
|
||
return result === 0;
|
||
}
|
||
CompareResult.isNeitherLessOrGreaterThan = isNeitherLessOrGreaterThan;
|
||
CompareResult.greaterThan = 1;
|
||
CompareResult.lessThan = -1;
|
||
CompareResult.neitherLessOrGreaterThan = 0;
|
||
})(CompareResult || (exports.CompareResult = CompareResult = {}));
|
||
function compareBy(selector, comparator) {
|
||
return (a, b) => comparator(selector(a), selector(b));
|
||
}
|
||
function tieBreakComparators(...comparators) {
|
||
return (item1, item2) => {
|
||
for (const comparator of comparators) {
|
||
const result = comparator(item1, item2);
|
||
if (!CompareResult.isNeitherLessOrGreaterThan(result)) {
|
||
return result;
|
||
}
|
||
}
|
||
return CompareResult.neitherLessOrGreaterThan;
|
||
};
|
||
}
|
||
/**
|
||
* The natural order on numbers.
|
||
*/
|
||
const numberComparator = (a, b) => a - b;
|
||
exports.numberComparator = numberComparator;
|
||
const booleanComparator = (a, b) => (0, exports.numberComparator)(a ? 1 : 0, b ? 1 : 0);
|
||
exports.booleanComparator = booleanComparator;
|
||
function reverseOrder(comparator) {
|
||
return (a, b) => -comparator(a, b);
|
||
}
|
||
class ArrayQueue {
|
||
/**
|
||
* Constructs a queue that is backed by the given array. Runtime is O(1).
|
||
*/
|
||
constructor(items) {
|
||
this.items = items;
|
||
this.firstIdx = 0;
|
||
this.lastIdx = this.items.length - 1;
|
||
}
|
||
get length() {
|
||
return this.lastIdx - this.firstIdx + 1;
|
||
}
|
||
/**
|
||
* Consumes elements from the beginning of the queue as long as the predicate returns true.
|
||
* If no elements were consumed, `null` is returned. Has a runtime of O(result.length).
|
||
*/
|
||
takeWhile(predicate) {
|
||
// P(k) := k <= this.lastIdx && predicate(this.items[k])
|
||
// Find s := min { k | k >= this.firstIdx && !P(k) } and return this.data[this.firstIdx...s)
|
||
let startIdx = this.firstIdx;
|
||
while (startIdx < this.items.length && predicate(this.items[startIdx])) {
|
||
startIdx++;
|
||
}
|
||
const result = startIdx === this.firstIdx ? null : this.items.slice(this.firstIdx, startIdx);
|
||
this.firstIdx = startIdx;
|
||
return result;
|
||
}
|
||
/**
|
||
* Consumes elements from the end of the queue as long as the predicate returns true.
|
||
* If no elements were consumed, `null` is returned.
|
||
* The result has the same order as the underlying array!
|
||
*/
|
||
takeFromEndWhile(predicate) {
|
||
// P(k) := this.firstIdx >= k && predicate(this.items[k])
|
||
// Find s := max { k | k <= this.lastIdx && !P(k) } and return this.data(s...this.lastIdx]
|
||
let endIdx = this.lastIdx;
|
||
while (endIdx >= 0 && predicate(this.items[endIdx])) {
|
||
endIdx--;
|
||
}
|
||
const result = endIdx === this.lastIdx ? null : this.items.slice(endIdx + 1, this.lastIdx + 1);
|
||
this.lastIdx = endIdx;
|
||
return result;
|
||
}
|
||
peek() {
|
||
if (this.length === 0) {
|
||
return undefined;
|
||
}
|
||
return this.items[this.firstIdx];
|
||
}
|
||
dequeue() {
|
||
const result = this.items[this.firstIdx];
|
||
this.firstIdx++;
|
||
return result;
|
||
}
|
||
takeCount(count) {
|
||
const result = this.items.slice(this.firstIdx, this.firstIdx + count);
|
||
this.firstIdx += count;
|
||
return result;
|
||
}
|
||
}
|
||
exports.ArrayQueue = ArrayQueue;
|
||
/**
|
||
* This class is faster than an iterator and array for lazy computed data.
|
||
*/
|
||
class CallbackIterable {
|
||
static { this.empty = new CallbackIterable(_callback => { }); }
|
||
constructor(
|
||
/**
|
||
* Calls the callback for every item.
|
||
* Stops when the callback returns false.
|
||
*/
|
||
iterate) {
|
||
this.iterate = iterate;
|
||
}
|
||
toArray() {
|
||
const result = [];
|
||
this.iterate(item => { result.push(item); return true; });
|
||
return result;
|
||
}
|
||
filter(predicate) {
|
||
return new CallbackIterable(cb => this.iterate(item => predicate(item) ? cb(item) : true));
|
||
}
|
||
map(mapFn) {
|
||
return new CallbackIterable(cb => this.iterate(item => cb(mapFn(item))));
|
||
}
|
||
findLast(predicate) {
|
||
let result;
|
||
this.iterate(item => {
|
||
if (predicate(item)) {
|
||
result = item;
|
||
}
|
||
return true;
|
||
});
|
||
return result;
|
||
}
|
||
findLastMaxBy(comparator) {
|
||
let result;
|
||
let first = true;
|
||
this.iterate(item => {
|
||
if (first || CompareResult.isGreaterThan(comparator(item, result))) {
|
||
first = false;
|
||
result = item;
|
||
}
|
||
return true;
|
||
});
|
||
return result;
|
||
}
|
||
}
|
||
exports.CallbackIterable = CallbackIterable;
|
||
/**
|
||
* Represents a re-arrangement of items in an array.
|
||
*/
|
||
class Permutation {
|
||
constructor(_indexMap) {
|
||
this._indexMap = _indexMap;
|
||
}
|
||
/**
|
||
* Returns a permutation that sorts the given array according to the given compare function.
|
||
*/
|
||
static createSortPermutation(arr, compareFn) {
|
||
const sortIndices = Array.from(arr.keys()).sort((index1, index2) => compareFn(arr[index1], arr[index2]));
|
||
return new Permutation(sortIndices);
|
||
}
|
||
/**
|
||
* Returns a new array with the elements of the given array re-arranged according to this permutation.
|
||
*/
|
||
apply(arr) {
|
||
return arr.map((_, index) => arr[this._indexMap[index]]);
|
||
}
|
||
/**
|
||
* Returns a new permutation that undoes the re-arrangement of this permutation.
|
||
*/
|
||
inverse() {
|
||
const inverseIndexMap = this._indexMap.slice();
|
||
for (let i = 0; i < this._indexMap.length; i++) {
|
||
inverseIndexMap[this._indexMap[i]] = i;
|
||
}
|
||
return new Permutation(inverseIndexMap);
|
||
}
|
||
}
|
||
exports.Permutation = Permutation;
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[15/*vs/base/common/arraysFind*/], __M([0/*require*/,1/*exports*/]), function (require, exports) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.MonotonousArray = void 0;
|
||
exports.findLast = findLast;
|
||
exports.findLastIdx = findLastIdx;
|
||
exports.findLastMonotonous = findLastMonotonous;
|
||
exports.findLastIdxMonotonous = findLastIdxMonotonous;
|
||
exports.findFirstMonotonous = findFirstMonotonous;
|
||
exports.findFirstIdxMonotonousOrArrLen = findFirstIdxMonotonousOrArrLen;
|
||
exports.findFirstMax = findFirstMax;
|
||
exports.findLastMax = findLastMax;
|
||
exports.findFirstMin = findFirstMin;
|
||
exports.findMaxIdx = findMaxIdx;
|
||
exports.mapFindFirst = mapFindFirst;
|
||
function findLast(array, predicate) {
|
||
const idx = findLastIdx(array, predicate);
|
||
if (idx === -1) {
|
||
return undefined;
|
||
}
|
||
return array[idx];
|
||
}
|
||
function findLastIdx(array, predicate, fromIndex = array.length - 1) {
|
||
for (let i = fromIndex; i >= 0; i--) {
|
||
const element = array[i];
|
||
if (predicate(element)) {
|
||
return i;
|
||
}
|
||
}
|
||
return -1;
|
||
}
|
||
/**
|
||
* Finds the last item where predicate is true using binary search.
|
||
* `predicate` must be monotonous, i.e. `arr.map(predicate)` must be like `[true, ..., true, false, ..., false]`!
|
||
*
|
||
* @returns `undefined` if no item matches, otherwise the last item that matches the predicate.
|
||
*/
|
||
function findLastMonotonous(array, predicate) {
|
||
const idx = findLastIdxMonotonous(array, predicate);
|
||
return idx === -1 ? undefined : array[idx];
|
||
}
|
||
/**
|
||
* Finds the last item where predicate is true using binary search.
|
||
* `predicate` must be monotonous, i.e. `arr.map(predicate)` must be like `[true, ..., true, false, ..., false]`!
|
||
*
|
||
* @returns `startIdx - 1` if predicate is false for all items, otherwise the index of the last item that matches the predicate.
|
||
*/
|
||
function findLastIdxMonotonous(array, predicate, startIdx = 0, endIdxEx = array.length) {
|
||
let i = startIdx;
|
||
let j = endIdxEx;
|
||
while (i < j) {
|
||
const k = Math.floor((i + j) / 2);
|
||
if (predicate(array[k])) {
|
||
i = k + 1;
|
||
}
|
||
else {
|
||
j = k;
|
||
}
|
||
}
|
||
return i - 1;
|
||
}
|
||
/**
|
||
* Finds the first item where predicate is true using binary search.
|
||
* `predicate` must be monotonous, i.e. `arr.map(predicate)` must be like `[false, ..., false, true, ..., true]`!
|
||
*
|
||
* @returns `undefined` if no item matches, otherwise the first item that matches the predicate.
|
||
*/
|
||
function findFirstMonotonous(array, predicate) {
|
||
const idx = findFirstIdxMonotonousOrArrLen(array, predicate);
|
||
return idx === array.length ? undefined : array[idx];
|
||
}
|
||
/**
|
||
* Finds the first item where predicate is true using binary search.
|
||
* `predicate` must be monotonous, i.e. `arr.map(predicate)` must be like `[false, ..., false, true, ..., true]`!
|
||
*
|
||
* @returns `endIdxEx` if predicate is false for all items, otherwise the index of the first item that matches the predicate.
|
||
*/
|
||
function findFirstIdxMonotonousOrArrLen(array, predicate, startIdx = 0, endIdxEx = array.length) {
|
||
let i = startIdx;
|
||
let j = endIdxEx;
|
||
while (i < j) {
|
||
const k = Math.floor((i + j) / 2);
|
||
if (predicate(array[k])) {
|
||
j = k;
|
||
}
|
||
else {
|
||
i = k + 1;
|
||
}
|
||
}
|
||
return i;
|
||
}
|
||
/**
|
||
* Use this when
|
||
* * You have a sorted array
|
||
* * You query this array with a monotonous predicate to find the last item that has a certain property.
|
||
* * You query this array multiple times with monotonous predicates that get weaker and weaker.
|
||
*/
|
||
class MonotonousArray {
|
||
static { this.assertInvariants = false; }
|
||
constructor(_array) {
|
||
this._array = _array;
|
||
this._findLastMonotonousLastIdx = 0;
|
||
}
|
||
/**
|
||
* The predicate must be monotonous, i.e. `arr.map(predicate)` must be like `[true, ..., true, false, ..., false]`!
|
||
* For subsequent calls, current predicate must be weaker than (or equal to) the previous predicate, i.e. more entries must be `true`.
|
||
*/
|
||
findLastMonotonous(predicate) {
|
||
if (MonotonousArray.assertInvariants) {
|
||
if (this._prevFindLastPredicate) {
|
||
for (const item of this._array) {
|
||
if (this._prevFindLastPredicate(item) && !predicate(item)) {
|
||
throw new Error('MonotonousArray: current predicate must be weaker than (or equal to) the previous predicate.');
|
||
}
|
||
}
|
||
}
|
||
this._prevFindLastPredicate = predicate;
|
||
}
|
||
const idx = findLastIdxMonotonous(this._array, predicate, this._findLastMonotonousLastIdx);
|
||
this._findLastMonotonousLastIdx = idx + 1;
|
||
return idx === -1 ? undefined : this._array[idx];
|
||
}
|
||
}
|
||
exports.MonotonousArray = MonotonousArray;
|
||
/**
|
||
* Returns the first item that is equal to or greater than every other item.
|
||
*/
|
||
function findFirstMax(array, comparator) {
|
||
if (array.length === 0) {
|
||
return undefined;
|
||
}
|
||
let max = array[0];
|
||
for (let i = 1; i < array.length; i++) {
|
||
const item = array[i];
|
||
if (comparator(item, max) > 0) {
|
||
max = item;
|
||
}
|
||
}
|
||
return max;
|
||
}
|
||
/**
|
||
* Returns the last item that is equal to or greater than every other item.
|
||
*/
|
||
function findLastMax(array, comparator) {
|
||
if (array.length === 0) {
|
||
return undefined;
|
||
}
|
||
let max = array[0];
|
||
for (let i = 1; i < array.length; i++) {
|
||
const item = array[i];
|
||
if (comparator(item, max) >= 0) {
|
||
max = item;
|
||
}
|
||
}
|
||
return max;
|
||
}
|
||
/**
|
||
* Returns the first item that is equal to or less than every other item.
|
||
*/
|
||
function findFirstMin(array, comparator) {
|
||
return findFirstMax(array, (a, b) => -comparator(a, b));
|
||
}
|
||
function findMaxIdx(array, comparator) {
|
||
if (array.length === 0) {
|
||
return -1;
|
||
}
|
||
let maxIdx = 0;
|
||
for (let i = 1; i < array.length; i++) {
|
||
const item = array[i];
|
||
if (comparator(item, array[maxIdx]) > 0) {
|
||
maxIdx = i;
|
||
}
|
||
}
|
||
return maxIdx;
|
||
}
|
||
/**
|
||
* Returns the first mapped value of the array which is not undefined.
|
||
*/
|
||
function mapFindFirst(items, mapFn) {
|
||
for (const value of items) {
|
||
const mapped = mapFn(value);
|
||
if (mapped !== undefined) {
|
||
return mapped;
|
||
}
|
||
}
|
||
return undefined;
|
||
}
|
||
});
|
||
|
||
define(__m[39/*vs/base/common/cache*/], __M([0/*require*/,1/*exports*/]), function (require, exports) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.CachedFunction = exports.LRUCachedFunction = void 0;
|
||
exports.identity = identity;
|
||
function identity(t) {
|
||
return t;
|
||
}
|
||
/**
|
||
* Uses a LRU cache to make a given parametrized function cached.
|
||
* Caches just the last key/value.
|
||
*/
|
||
class LRUCachedFunction {
|
||
constructor(arg1, arg2) {
|
||
this.lastCache = undefined;
|
||
this.lastArgKey = undefined;
|
||
if (typeof arg1 === 'function') {
|
||
this._fn = arg1;
|
||
this._computeKey = identity;
|
||
}
|
||
else {
|
||
this._fn = arg2;
|
||
this._computeKey = arg1.getCacheKey;
|
||
}
|
||
}
|
||
get(arg) {
|
||
const key = this._computeKey(arg);
|
||
if (this.lastArgKey !== key) {
|
||
this.lastArgKey = key;
|
||
this.lastCache = this._fn(arg);
|
||
}
|
||
return this.lastCache;
|
||
}
|
||
}
|
||
exports.LRUCachedFunction = LRUCachedFunction;
|
||
/**
|
||
* Uses an unbounded cache to memoize the results of the given function.
|
||
*/
|
||
class CachedFunction {
|
||
get cachedValues() {
|
||
return this._map;
|
||
}
|
||
constructor(arg1, arg2) {
|
||
this._map = new Map();
|
||
this._map2 = new Map();
|
||
if (typeof arg1 === 'function') {
|
||
this._fn = arg1;
|
||
this._computeKey = identity;
|
||
}
|
||
else {
|
||
this._fn = arg2;
|
||
this._computeKey = arg1.getCacheKey;
|
||
}
|
||
}
|
||
get(arg) {
|
||
const key = this._computeKey(arg);
|
||
if (this._map2.has(key)) {
|
||
return this._map2.get(key);
|
||
}
|
||
const value = this._fn(arg);
|
||
this._map.set(arg, value);
|
||
this._map2.set(key, value);
|
||
return value;
|
||
}
|
||
}
|
||
exports.CachedFunction = CachedFunction;
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[40/*vs/base/common/color*/], __M([0/*require*/,1/*exports*/]), function (require, exports) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.Color = exports.HSVA = exports.HSLA = exports.RGBA = void 0;
|
||
function roundFloat(number, decimalPoints) {
|
||
const decimal = Math.pow(10, decimalPoints);
|
||
return Math.round(number * decimal) / decimal;
|
||
}
|
||
class RGBA {
|
||
constructor(r, g, b, a = 1) {
|
||
this._rgbaBrand = undefined;
|
||
this.r = Math.min(255, Math.max(0, r)) | 0;
|
||
this.g = Math.min(255, Math.max(0, g)) | 0;
|
||
this.b = Math.min(255, Math.max(0, b)) | 0;
|
||
this.a = roundFloat(Math.max(Math.min(1, a), 0), 3);
|
||
}
|
||
static equals(a, b) {
|
||
return a.r === b.r && a.g === b.g && a.b === b.b && a.a === b.a;
|
||
}
|
||
}
|
||
exports.RGBA = RGBA;
|
||
class HSLA {
|
||
constructor(h, s, l, a) {
|
||
this._hslaBrand = undefined;
|
||
this.h = Math.max(Math.min(360, h), 0) | 0;
|
||
this.s = roundFloat(Math.max(Math.min(1, s), 0), 3);
|
||
this.l = roundFloat(Math.max(Math.min(1, l), 0), 3);
|
||
this.a = roundFloat(Math.max(Math.min(1, a), 0), 3);
|
||
}
|
||
static equals(a, b) {
|
||
return a.h === b.h && a.s === b.s && a.l === b.l && a.a === b.a;
|
||
}
|
||
/**
|
||
* Converts an RGB color value to HSL. Conversion formula
|
||
* adapted from http://en.wikipedia.org/wiki/HSL_color_space.
|
||
* Assumes r, g, and b are contained in the set [0, 255] and
|
||
* returns h in the set [0, 360], s, and l in the set [0, 1].
|
||
*/
|
||
static fromRGBA(rgba) {
|
||
const r = rgba.r / 255;
|
||
const g = rgba.g / 255;
|
||
const b = rgba.b / 255;
|
||
const a = rgba.a;
|
||
const max = Math.max(r, g, b);
|
||
const min = Math.min(r, g, b);
|
||
let h = 0;
|
||
let s = 0;
|
||
const l = (min + max) / 2;
|
||
const chroma = max - min;
|
||
if (chroma > 0) {
|
||
s = Math.min((l <= 0.5 ? chroma / (2 * l) : chroma / (2 - (2 * l))), 1);
|
||
switch (max) {
|
||
case r:
|
||
h = (g - b) / chroma + (g < b ? 6 : 0);
|
||
break;
|
||
case g:
|
||
h = (b - r) / chroma + 2;
|
||
break;
|
||
case b:
|
||
h = (r - g) / chroma + 4;
|
||
break;
|
||
}
|
||
h *= 60;
|
||
h = Math.round(h);
|
||
}
|
||
return new HSLA(h, s, l, a);
|
||
}
|
||
static _hue2rgb(p, q, t) {
|
||
if (t < 0) {
|
||
t += 1;
|
||
}
|
||
if (t > 1) {
|
||
t -= 1;
|
||
}
|
||
if (t < 1 / 6) {
|
||
return p + (q - p) * 6 * t;
|
||
}
|
||
if (t < 1 / 2) {
|
||
return q;
|
||
}
|
||
if (t < 2 / 3) {
|
||
return p + (q - p) * (2 / 3 - t) * 6;
|
||
}
|
||
return p;
|
||
}
|
||
/**
|
||
* Converts an HSL color value to RGB. Conversion formula
|
||
* adapted from http://en.wikipedia.org/wiki/HSL_color_space.
|
||
* Assumes h in the set [0, 360] s, and l are contained in the set [0, 1] and
|
||
* returns r, g, and b in the set [0, 255].
|
||
*/
|
||
static toRGBA(hsla) {
|
||
const h = hsla.h / 360;
|
||
const { s, l, a } = hsla;
|
||
let r, g, b;
|
||
if (s === 0) {
|
||
r = g = b = l; // achromatic
|
||
}
|
||
else {
|
||
const q = l < 0.5 ? l * (1 + s) : l + s - l * s;
|
||
const p = 2 * l - q;
|
||
r = HSLA._hue2rgb(p, q, h + 1 / 3);
|
||
g = HSLA._hue2rgb(p, q, h);
|
||
b = HSLA._hue2rgb(p, q, h - 1 / 3);
|
||
}
|
||
return new RGBA(Math.round(r * 255), Math.round(g * 255), Math.round(b * 255), a);
|
||
}
|
||
}
|
||
exports.HSLA = HSLA;
|
||
class HSVA {
|
||
constructor(h, s, v, a) {
|
||
this._hsvaBrand = undefined;
|
||
this.h = Math.max(Math.min(360, h), 0) | 0;
|
||
this.s = roundFloat(Math.max(Math.min(1, s), 0), 3);
|
||
this.v = roundFloat(Math.max(Math.min(1, v), 0), 3);
|
||
this.a = roundFloat(Math.max(Math.min(1, a), 0), 3);
|
||
}
|
||
static equals(a, b) {
|
||
return a.h === b.h && a.s === b.s && a.v === b.v && a.a === b.a;
|
||
}
|
||
// from http://www.rapidtables.com/convert/color/rgb-to-hsv.htm
|
||
static fromRGBA(rgba) {
|
||
const r = rgba.r / 255;
|
||
const g = rgba.g / 255;
|
||
const b = rgba.b / 255;
|
||
const cmax = Math.max(r, g, b);
|
||
const cmin = Math.min(r, g, b);
|
||
const delta = cmax - cmin;
|
||
const s = cmax === 0 ? 0 : (delta / cmax);
|
||
let m;
|
||
if (delta === 0) {
|
||
m = 0;
|
||
}
|
||
else if (cmax === r) {
|
||
m = ((((g - b) / delta) % 6) + 6) % 6;
|
||
}
|
||
else if (cmax === g) {
|
||
m = ((b - r) / delta) + 2;
|
||
}
|
||
else {
|
||
m = ((r - g) / delta) + 4;
|
||
}
|
||
return new HSVA(Math.round(m * 60), s, cmax, rgba.a);
|
||
}
|
||
// from http://www.rapidtables.com/convert/color/hsv-to-rgb.htm
|
||
static toRGBA(hsva) {
|
||
const { h, s, v, a } = hsva;
|
||
const c = v * s;
|
||
const x = c * (1 - Math.abs((h / 60) % 2 - 1));
|
||
const m = v - c;
|
||
let [r, g, b] = [0, 0, 0];
|
||
if (h < 60) {
|
||
r = c;
|
||
g = x;
|
||
}
|
||
else if (h < 120) {
|
||
r = x;
|
||
g = c;
|
||
}
|
||
else if (h < 180) {
|
||
g = c;
|
||
b = x;
|
||
}
|
||
else if (h < 240) {
|
||
g = x;
|
||
b = c;
|
||
}
|
||
else if (h < 300) {
|
||
r = x;
|
||
b = c;
|
||
}
|
||
else if (h <= 360) {
|
||
r = c;
|
||
b = x;
|
||
}
|
||
r = Math.round((r + m) * 255);
|
||
g = Math.round((g + m) * 255);
|
||
b = Math.round((b + m) * 255);
|
||
return new RGBA(r, g, b, a);
|
||
}
|
||
}
|
||
exports.HSVA = HSVA;
|
||
class Color {
|
||
static fromHex(hex) {
|
||
return Color.Format.CSS.parseHex(hex) || Color.red;
|
||
}
|
||
static equals(a, b) {
|
||
if (!a && !b) {
|
||
return true;
|
||
}
|
||
if (!a || !b) {
|
||
return false;
|
||
}
|
||
return a.equals(b);
|
||
}
|
||
get hsla() {
|
||
if (this._hsla) {
|
||
return this._hsla;
|
||
}
|
||
else {
|
||
return HSLA.fromRGBA(this.rgba);
|
||
}
|
||
}
|
||
get hsva() {
|
||
if (this._hsva) {
|
||
return this._hsva;
|
||
}
|
||
return HSVA.fromRGBA(this.rgba);
|
||
}
|
||
constructor(arg) {
|
||
if (!arg) {
|
||
throw new Error('Color needs a value');
|
||
}
|
||
else if (arg instanceof RGBA) {
|
||
this.rgba = arg;
|
||
}
|
||
else if (arg instanceof HSLA) {
|
||
this._hsla = arg;
|
||
this.rgba = HSLA.toRGBA(arg);
|
||
}
|
||
else if (arg instanceof HSVA) {
|
||
this._hsva = arg;
|
||
this.rgba = HSVA.toRGBA(arg);
|
||
}
|
||
else {
|
||
throw new Error('Invalid color ctor argument');
|
||
}
|
||
}
|
||
equals(other) {
|
||
return !!other && RGBA.equals(this.rgba, other.rgba) && HSLA.equals(this.hsla, other.hsla) && HSVA.equals(this.hsva, other.hsva);
|
||
}
|
||
/**
|
||
* http://www.w3.org/TR/WCAG20/#relativeluminancedef
|
||
* Returns the number in the set [0, 1]. O => Darkest Black. 1 => Lightest white.
|
||
*/
|
||
getRelativeLuminance() {
|
||
const R = Color._relativeLuminanceForComponent(this.rgba.r);
|
||
const G = Color._relativeLuminanceForComponent(this.rgba.g);
|
||
const B = Color._relativeLuminanceForComponent(this.rgba.b);
|
||
const luminance = 0.2126 * R + 0.7152 * G + 0.0722 * B;
|
||
return roundFloat(luminance, 4);
|
||
}
|
||
static _relativeLuminanceForComponent(color) {
|
||
const c = color / 255;
|
||
return (c <= 0.03928) ? c / 12.92 : Math.pow(((c + 0.055) / 1.055), 2.4);
|
||
}
|
||
/**
|
||
* http://24ways.org/2010/calculating-color-contrast
|
||
* Return 'true' if lighter color otherwise 'false'
|
||
*/
|
||
isLighter() {
|
||
const yiq = (this.rgba.r * 299 + this.rgba.g * 587 + this.rgba.b * 114) / 1000;
|
||
return yiq >= 128;
|
||
}
|
||
isLighterThan(another) {
|
||
const lum1 = this.getRelativeLuminance();
|
||
const lum2 = another.getRelativeLuminance();
|
||
return lum1 > lum2;
|
||
}
|
||
isDarkerThan(another) {
|
||
const lum1 = this.getRelativeLuminance();
|
||
const lum2 = another.getRelativeLuminance();
|
||
return lum1 < lum2;
|
||
}
|
||
lighten(factor) {
|
||
return new Color(new HSLA(this.hsla.h, this.hsla.s, this.hsla.l + this.hsla.l * factor, this.hsla.a));
|
||
}
|
||
darken(factor) {
|
||
return new Color(new HSLA(this.hsla.h, this.hsla.s, this.hsla.l - this.hsla.l * factor, this.hsla.a));
|
||
}
|
||
transparent(factor) {
|
||
const { r, g, b, a } = this.rgba;
|
||
return new Color(new RGBA(r, g, b, a * factor));
|
||
}
|
||
isTransparent() {
|
||
return this.rgba.a === 0;
|
||
}
|
||
isOpaque() {
|
||
return this.rgba.a === 1;
|
||
}
|
||
opposite() {
|
||
return new Color(new RGBA(255 - this.rgba.r, 255 - this.rgba.g, 255 - this.rgba.b, this.rgba.a));
|
||
}
|
||
makeOpaque(opaqueBackground) {
|
||
if (this.isOpaque() || opaqueBackground.rgba.a !== 1) {
|
||
// only allow to blend onto a non-opaque color onto a opaque color
|
||
return this;
|
||
}
|
||
const { r, g, b, a } = this.rgba;
|
||
// https://stackoverflow.com/questions/12228548/finding-equivalent-color-with-opacity
|
||
return new Color(new RGBA(opaqueBackground.rgba.r - a * (opaqueBackground.rgba.r - r), opaqueBackground.rgba.g - a * (opaqueBackground.rgba.g - g), opaqueBackground.rgba.b - a * (opaqueBackground.rgba.b - b), 1));
|
||
}
|
||
toString() {
|
||
if (!this._toString) {
|
||
this._toString = Color.Format.CSS.format(this);
|
||
}
|
||
return this._toString;
|
||
}
|
||
static getLighterColor(of, relative, factor) {
|
||
if (of.isLighterThan(relative)) {
|
||
return of;
|
||
}
|
||
factor = factor ? factor : 0.5;
|
||
const lum1 = of.getRelativeLuminance();
|
||
const lum2 = relative.getRelativeLuminance();
|
||
factor = factor * (lum2 - lum1) / lum2;
|
||
return of.lighten(factor);
|
||
}
|
||
static getDarkerColor(of, relative, factor) {
|
||
if (of.isDarkerThan(relative)) {
|
||
return of;
|
||
}
|
||
factor = factor ? factor : 0.5;
|
||
const lum1 = of.getRelativeLuminance();
|
||
const lum2 = relative.getRelativeLuminance();
|
||
factor = factor * (lum1 - lum2) / lum1;
|
||
return of.darken(factor);
|
||
}
|
||
static { this.white = new Color(new RGBA(255, 255, 255, 1)); }
|
||
static { this.black = new Color(new RGBA(0, 0, 0, 1)); }
|
||
static { this.red = new Color(new RGBA(255, 0, 0, 1)); }
|
||
static { this.blue = new Color(new RGBA(0, 0, 255, 1)); }
|
||
static { this.green = new Color(new RGBA(0, 255, 0, 1)); }
|
||
static { this.cyan = new Color(new RGBA(0, 255, 255, 1)); }
|
||
static { this.lightgrey = new Color(new RGBA(211, 211, 211, 1)); }
|
||
static { this.transparent = new Color(new RGBA(0, 0, 0, 0)); }
|
||
}
|
||
exports.Color = Color;
|
||
(function (Color) {
|
||
let Format;
|
||
(function (Format) {
|
||
let CSS;
|
||
(function (CSS) {
|
||
function formatRGB(color) {
|
||
if (color.rgba.a === 1) {
|
||
return `rgb(${color.rgba.r}, ${color.rgba.g}, ${color.rgba.b})`;
|
||
}
|
||
return Color.Format.CSS.formatRGBA(color);
|
||
}
|
||
CSS.formatRGB = formatRGB;
|
||
function formatRGBA(color) {
|
||
return `rgba(${color.rgba.r}, ${color.rgba.g}, ${color.rgba.b}, ${+(color.rgba.a).toFixed(2)})`;
|
||
}
|
||
CSS.formatRGBA = formatRGBA;
|
||
function formatHSL(color) {
|
||
if (color.hsla.a === 1) {
|
||
return `hsl(${color.hsla.h}, ${(color.hsla.s * 100).toFixed(2)}%, ${(color.hsla.l * 100).toFixed(2)}%)`;
|
||
}
|
||
return Color.Format.CSS.formatHSLA(color);
|
||
}
|
||
CSS.formatHSL = formatHSL;
|
||
function formatHSLA(color) {
|
||
return `hsla(${color.hsla.h}, ${(color.hsla.s * 100).toFixed(2)}%, ${(color.hsla.l * 100).toFixed(2)}%, ${color.hsla.a.toFixed(2)})`;
|
||
}
|
||
CSS.formatHSLA = formatHSLA;
|
||
function _toTwoDigitHex(n) {
|
||
const r = n.toString(16);
|
||
return r.length !== 2 ? '0' + r : r;
|
||
}
|
||
/**
|
||
* Formats the color as #RRGGBB
|
||
*/
|
||
function formatHex(color) {
|
||
return `#${_toTwoDigitHex(color.rgba.r)}${_toTwoDigitHex(color.rgba.g)}${_toTwoDigitHex(color.rgba.b)}`;
|
||
}
|
||
CSS.formatHex = formatHex;
|
||
/**
|
||
* Formats the color as #RRGGBBAA
|
||
* If 'compact' is set, colors without transparancy will be printed as #RRGGBB
|
||
*/
|
||
function formatHexA(color, compact = false) {
|
||
if (compact && color.rgba.a === 1) {
|
||
return Color.Format.CSS.formatHex(color);
|
||
}
|
||
return `#${_toTwoDigitHex(color.rgba.r)}${_toTwoDigitHex(color.rgba.g)}${_toTwoDigitHex(color.rgba.b)}${_toTwoDigitHex(Math.round(color.rgba.a * 255))}`;
|
||
}
|
||
CSS.formatHexA = formatHexA;
|
||
/**
|
||
* The default format will use HEX if opaque and RGBA otherwise.
|
||
*/
|
||
function format(color) {
|
||
if (color.isOpaque()) {
|
||
return Color.Format.CSS.formatHex(color);
|
||
}
|
||
return Color.Format.CSS.formatRGBA(color);
|
||
}
|
||
CSS.format = format;
|
||
/**
|
||
* Converts an Hex color value to a Color.
|
||
* returns r, g, and b are contained in the set [0, 255]
|
||
* @param hex string (#RGB, #RGBA, #RRGGBB or #RRGGBBAA).
|
||
*/
|
||
function parseHex(hex) {
|
||
const length = hex.length;
|
||
if (length === 0) {
|
||
// Invalid color
|
||
return null;
|
||
}
|
||
if (hex.charCodeAt(0) !== 35 /* CharCode.Hash */) {
|
||
// Does not begin with a #
|
||
return null;
|
||
}
|
||
if (length === 7) {
|
||
// #RRGGBB format
|
||
const r = 16 * _parseHexDigit(hex.charCodeAt(1)) + _parseHexDigit(hex.charCodeAt(2));
|
||
const g = 16 * _parseHexDigit(hex.charCodeAt(3)) + _parseHexDigit(hex.charCodeAt(4));
|
||
const b = 16 * _parseHexDigit(hex.charCodeAt(5)) + _parseHexDigit(hex.charCodeAt(6));
|
||
return new Color(new RGBA(r, g, b, 1));
|
||
}
|
||
if (length === 9) {
|
||
// #RRGGBBAA format
|
||
const r = 16 * _parseHexDigit(hex.charCodeAt(1)) + _parseHexDigit(hex.charCodeAt(2));
|
||
const g = 16 * _parseHexDigit(hex.charCodeAt(3)) + _parseHexDigit(hex.charCodeAt(4));
|
||
const b = 16 * _parseHexDigit(hex.charCodeAt(5)) + _parseHexDigit(hex.charCodeAt(6));
|
||
const a = 16 * _parseHexDigit(hex.charCodeAt(7)) + _parseHexDigit(hex.charCodeAt(8));
|
||
return new Color(new RGBA(r, g, b, a / 255));
|
||
}
|
||
if (length === 4) {
|
||
// #RGB format
|
||
const r = _parseHexDigit(hex.charCodeAt(1));
|
||
const g = _parseHexDigit(hex.charCodeAt(2));
|
||
const b = _parseHexDigit(hex.charCodeAt(3));
|
||
return new Color(new RGBA(16 * r + r, 16 * g + g, 16 * b + b));
|
||
}
|
||
if (length === 5) {
|
||
// #RGBA format
|
||
const r = _parseHexDigit(hex.charCodeAt(1));
|
||
const g = _parseHexDigit(hex.charCodeAt(2));
|
||
const b = _parseHexDigit(hex.charCodeAt(3));
|
||
const a = _parseHexDigit(hex.charCodeAt(4));
|
||
return new Color(new RGBA(16 * r + r, 16 * g + g, 16 * b + b, (16 * a + a) / 255));
|
||
}
|
||
// Invalid color
|
||
return null;
|
||
}
|
||
CSS.parseHex = parseHex;
|
||
function _parseHexDigit(charCode) {
|
||
switch (charCode) {
|
||
case 48 /* CharCode.Digit0 */: return 0;
|
||
case 49 /* CharCode.Digit1 */: return 1;
|
||
case 50 /* CharCode.Digit2 */: return 2;
|
||
case 51 /* CharCode.Digit3 */: return 3;
|
||
case 52 /* CharCode.Digit4 */: return 4;
|
||
case 53 /* CharCode.Digit5 */: return 5;
|
||
case 54 /* CharCode.Digit6 */: return 6;
|
||
case 55 /* CharCode.Digit7 */: return 7;
|
||
case 56 /* CharCode.Digit8 */: return 8;
|
||
case 57 /* CharCode.Digit9 */: return 9;
|
||
case 97 /* CharCode.a */: return 10;
|
||
case 65 /* CharCode.A */: return 10;
|
||
case 98 /* CharCode.b */: return 11;
|
||
case 66 /* CharCode.B */: return 11;
|
||
case 99 /* CharCode.c */: return 12;
|
||
case 67 /* CharCode.C */: return 12;
|
||
case 100 /* CharCode.d */: return 13;
|
||
case 68 /* CharCode.D */: return 13;
|
||
case 101 /* CharCode.e */: return 14;
|
||
case 69 /* CharCode.E */: return 14;
|
||
case 102 /* CharCode.f */: return 15;
|
||
case 70 /* CharCode.F */: return 15;
|
||
}
|
||
return 0;
|
||
}
|
||
})(CSS = Format.CSS || (Format.CSS = {}));
|
||
})(Format = Color.Format || (Color.Format = {}));
|
||
})(Color || (exports.Color = Color = {}));
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[41/*vs/base/common/diff/diffChange*/], __M([0/*require*/,1/*exports*/]), function (require, exports) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.DiffChange = void 0;
|
||
/**
|
||
* Represents information about a specific difference between two sequences.
|
||
*/
|
||
class DiffChange {
|
||
/**
|
||
* Constructs a new DiffChange with the given sequence information
|
||
* and content.
|
||
*/
|
||
constructor(originalStart, originalLength, modifiedStart, modifiedLength) {
|
||
//Debug.Assert(originalLength > 0 || modifiedLength > 0, "originalLength and modifiedLength cannot both be <= 0");
|
||
this.originalStart = originalStart;
|
||
this.originalLength = originalLength;
|
||
this.modifiedStart = modifiedStart;
|
||
this.modifiedLength = modifiedLength;
|
||
}
|
||
/**
|
||
* The end point (exclusive) of the change in the original sequence.
|
||
*/
|
||
getOriginalEnd() {
|
||
return this.originalStart + this.originalLength;
|
||
}
|
||
/**
|
||
* The end point (exclusive) of the change in the modified sequence.
|
||
*/
|
||
getModifiedEnd() {
|
||
return this.modifiedStart + this.modifiedLength;
|
||
}
|
||
}
|
||
exports.DiffChange = DiffChange;
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[3/*vs/base/common/errors*/], __M([0/*require*/,1/*exports*/]), function (require, exports) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.BugIndicatingError = exports.ErrorNoTelemetry = exports.NotSupportedError = exports.CancellationError = exports.errorHandler = exports.ErrorHandler = void 0;
|
||
exports.onUnexpectedError = onUnexpectedError;
|
||
exports.onUnexpectedExternalError = onUnexpectedExternalError;
|
||
exports.transformErrorForSerialization = transformErrorForSerialization;
|
||
exports.isCancellationError = isCancellationError;
|
||
exports.canceled = canceled;
|
||
exports.illegalArgument = illegalArgument;
|
||
exports.illegalState = illegalState;
|
||
// Avoid circular dependency on EventEmitter by implementing a subset of the interface.
|
||
class ErrorHandler {
|
||
constructor() {
|
||
this.listeners = [];
|
||
this.unexpectedErrorHandler = function (e) {
|
||
setTimeout(() => {
|
||
if (e.stack) {
|
||
if (ErrorNoTelemetry.isErrorNoTelemetry(e)) {
|
||
throw new ErrorNoTelemetry(e.message + '\n\n' + e.stack);
|
||
}
|
||
throw new Error(e.message + '\n\n' + e.stack);
|
||
}
|
||
throw e;
|
||
}, 0);
|
||
};
|
||
}
|
||
emit(e) {
|
||
this.listeners.forEach((listener) => {
|
||
listener(e);
|
||
});
|
||
}
|
||
onUnexpectedError(e) {
|
||
this.unexpectedErrorHandler(e);
|
||
this.emit(e);
|
||
}
|
||
// For external errors, we don't want the listeners to be called
|
||
onUnexpectedExternalError(e) {
|
||
this.unexpectedErrorHandler(e);
|
||
}
|
||
}
|
||
exports.ErrorHandler = ErrorHandler;
|
||
exports.errorHandler = new ErrorHandler();
|
||
function onUnexpectedError(e) {
|
||
// ignore errors from cancelled promises
|
||
if (!isCancellationError(e)) {
|
||
exports.errorHandler.onUnexpectedError(e);
|
||
}
|
||
return undefined;
|
||
}
|
||
function onUnexpectedExternalError(e) {
|
||
// ignore errors from cancelled promises
|
||
if (!isCancellationError(e)) {
|
||
exports.errorHandler.onUnexpectedExternalError(e);
|
||
}
|
||
return undefined;
|
||
}
|
||
function transformErrorForSerialization(error) {
|
||
if (error instanceof Error) {
|
||
const { name, message } = error;
|
||
const stack = error.stacktrace || error.stack;
|
||
return {
|
||
$isError: true,
|
||
name,
|
||
message,
|
||
stack,
|
||
noTelemetry: ErrorNoTelemetry.isErrorNoTelemetry(error)
|
||
};
|
||
}
|
||
// return as is
|
||
return error;
|
||
}
|
||
const canceledName = 'Canceled';
|
||
/**
|
||
* Checks if the given error is a promise in canceled state
|
||
*/
|
||
function isCancellationError(error) {
|
||
if (error instanceof CancellationError) {
|
||
return true;
|
||
}
|
||
return error instanceof Error && error.name === canceledName && error.message === canceledName;
|
||
}
|
||
// !!!IMPORTANT!!!
|
||
// Do NOT change this class because it is also used as an API-type.
|
||
class CancellationError extends Error {
|
||
constructor() {
|
||
super(canceledName);
|
||
this.name = this.message;
|
||
}
|
||
}
|
||
exports.CancellationError = CancellationError;
|
||
/**
|
||
* @deprecated use {@link CancellationError `new CancellationError()`} instead
|
||
*/
|
||
function canceled() {
|
||
const error = new Error(canceledName);
|
||
error.name = error.message;
|
||
return error;
|
||
}
|
||
function illegalArgument(name) {
|
||
if (name) {
|
||
return new Error(`Illegal argument: ${name}`);
|
||
}
|
||
else {
|
||
return new Error('Illegal argument');
|
||
}
|
||
}
|
||
function illegalState(name) {
|
||
if (name) {
|
||
return new Error(`Illegal state: ${name}`);
|
||
}
|
||
else {
|
||
return new Error('Illegal state');
|
||
}
|
||
}
|
||
class NotSupportedError extends Error {
|
||
constructor(message) {
|
||
super('NotSupported');
|
||
if (message) {
|
||
this.message = message;
|
||
}
|
||
}
|
||
}
|
||
exports.NotSupportedError = NotSupportedError;
|
||
/**
|
||
* Error that when thrown won't be logged in telemetry as an unhandled error.
|
||
*/
|
||
class ErrorNoTelemetry extends Error {
|
||
constructor(msg) {
|
||
super(msg);
|
||
this.name = 'CodeExpectedError';
|
||
}
|
||
static fromError(err) {
|
||
if (err instanceof ErrorNoTelemetry) {
|
||
return err;
|
||
}
|
||
const result = new ErrorNoTelemetry();
|
||
result.message = err.message;
|
||
result.stack = err.stack;
|
||
return result;
|
||
}
|
||
static isErrorNoTelemetry(err) {
|
||
return err.name === 'CodeExpectedError';
|
||
}
|
||
}
|
||
exports.ErrorNoTelemetry = ErrorNoTelemetry;
|
||
/**
|
||
* This error indicates a bug.
|
||
* Do not throw this for invalid user input.
|
||
* Only catch this error to recover gracefully from bugs.
|
||
*/
|
||
class BugIndicatingError extends Error {
|
||
constructor(message) {
|
||
super(message || 'An unexpected bug occurred.');
|
||
Object.setPrototypeOf(this, BugIndicatingError.prototype);
|
||
// Because we know for sure only buggy code throws this,
|
||
// we definitely want to break here and fix the bug.
|
||
// eslint-disable-next-line no-debugger
|
||
// debugger;
|
||
}
|
||
}
|
||
exports.BugIndicatingError = BugIndicatingError;
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[12/*vs/base/common/assert*/], __M([0/*require*/,1/*exports*/,3/*vs/base/common/errors*/]), function (require, exports, errors_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.ok = ok;
|
||
exports.assertNever = assertNever;
|
||
exports.softAssert = softAssert;
|
||
exports.assertFn = assertFn;
|
||
exports.checkAdjacentItems = checkAdjacentItems;
|
||
/**
|
||
* Throws an error with the provided message if the provided value does not evaluate to a true Javascript value.
|
||
*
|
||
* @deprecated Use `assert(...)` instead.
|
||
* This method is usually used like this:
|
||
* ```ts
|
||
* import * as assert from 'vs/base/common/assert';
|
||
* assert.ok(...);
|
||
* ```
|
||
*
|
||
* However, `assert` in that example is a user chosen name.
|
||
* There is no tooling for generating such an import statement.
|
||
* Thus, the `assert(...)` function should be used instead.
|
||
*/
|
||
function ok(value, message) {
|
||
if (!value) {
|
||
throw new Error(message ? `Assertion failed (${message})` : 'Assertion Failed');
|
||
}
|
||
}
|
||
function assertNever(value, message = 'Unreachable') {
|
||
throw new Error(message);
|
||
}
|
||
/**
|
||
* Like assert, but doesn't throw.
|
||
*/
|
||
function softAssert(condition) {
|
||
if (!condition) {
|
||
(0, errors_1.onUnexpectedError)(new errors_1.BugIndicatingError('Soft Assertion Failed'));
|
||
}
|
||
}
|
||
/**
|
||
* condition must be side-effect free!
|
||
*/
|
||
function assertFn(condition) {
|
||
if (!condition()) {
|
||
// eslint-disable-next-line no-debugger
|
||
debugger;
|
||
// Reevaluate `condition` again to make debugging easier
|
||
condition();
|
||
(0, errors_1.onUnexpectedError)(new errors_1.BugIndicatingError('Assertion Failed'));
|
||
}
|
||
}
|
||
function checkAdjacentItems(items, predicate) {
|
||
let i = 0;
|
||
while (i < items.length - 1) {
|
||
const a = items[i];
|
||
const b = items[i + 1];
|
||
if (!predicate(a, b)) {
|
||
return false;
|
||
}
|
||
i++;
|
||
}
|
||
return true;
|
||
}
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[18/*vs/base/common/functional*/], __M([0/*require*/,1/*exports*/]), function (require, exports) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.createSingleCallFunction = createSingleCallFunction;
|
||
/**
|
||
* Given a function, returns a function that is only calling that function once.
|
||
*/
|
||
function createSingleCallFunction(fn, fnDidRunCallback) {
|
||
const _this = this;
|
||
let didCall = false;
|
||
let result;
|
||
return function () {
|
||
if (didCall) {
|
||
return result;
|
||
}
|
||
didCall = true;
|
||
if (fnDidRunCallback) {
|
||
try {
|
||
result = fn.apply(_this, arguments);
|
||
}
|
||
finally {
|
||
fnDidRunCallback();
|
||
}
|
||
}
|
||
else {
|
||
result = fn.apply(_this, arguments);
|
||
}
|
||
return result;
|
||
};
|
||
}
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[19/*vs/base/common/iterator*/], __M([0/*require*/,1/*exports*/]), function (require, exports) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.Iterable = void 0;
|
||
var Iterable;
|
||
(function (Iterable) {
|
||
function is(thing) {
|
||
return thing && typeof thing === 'object' && typeof thing[Symbol.iterator] === 'function';
|
||
}
|
||
Iterable.is = is;
|
||
const _empty = Object.freeze([]);
|
||
function empty() {
|
||
return _empty;
|
||
}
|
||
Iterable.empty = empty;
|
||
function* single(element) {
|
||
yield element;
|
||
}
|
||
Iterable.single = single;
|
||
function wrap(iterableOrElement) {
|
||
if (is(iterableOrElement)) {
|
||
return iterableOrElement;
|
||
}
|
||
else {
|
||
return single(iterableOrElement);
|
||
}
|
||
}
|
||
Iterable.wrap = wrap;
|
||
function from(iterable) {
|
||
return iterable || _empty;
|
||
}
|
||
Iterable.from = from;
|
||
function* reverse(array) {
|
||
for (let i = array.length - 1; i >= 0; i--) {
|
||
yield array[i];
|
||
}
|
||
}
|
||
Iterable.reverse = reverse;
|
||
function isEmpty(iterable) {
|
||
return !iterable || iterable[Symbol.iterator]().next().done === true;
|
||
}
|
||
Iterable.isEmpty = isEmpty;
|
||
function first(iterable) {
|
||
return iterable[Symbol.iterator]().next().value;
|
||
}
|
||
Iterable.first = first;
|
||
function some(iterable, predicate) {
|
||
let i = 0;
|
||
for (const element of iterable) {
|
||
if (predicate(element, i++)) {
|
||
return true;
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
Iterable.some = some;
|
||
function find(iterable, predicate) {
|
||
for (const element of iterable) {
|
||
if (predicate(element)) {
|
||
return element;
|
||
}
|
||
}
|
||
return undefined;
|
||
}
|
||
Iterable.find = find;
|
||
function* filter(iterable, predicate) {
|
||
for (const element of iterable) {
|
||
if (predicate(element)) {
|
||
yield element;
|
||
}
|
||
}
|
||
}
|
||
Iterable.filter = filter;
|
||
function* map(iterable, fn) {
|
||
let index = 0;
|
||
for (const element of iterable) {
|
||
yield fn(element, index++);
|
||
}
|
||
}
|
||
Iterable.map = map;
|
||
function* flatMap(iterable, fn) {
|
||
let index = 0;
|
||
for (const element of iterable) {
|
||
yield* fn(element, index++);
|
||
}
|
||
}
|
||
Iterable.flatMap = flatMap;
|
||
function* concat(...iterables) {
|
||
for (const iterable of iterables) {
|
||
yield* iterable;
|
||
}
|
||
}
|
||
Iterable.concat = concat;
|
||
function reduce(iterable, reducer, initialValue) {
|
||
let value = initialValue;
|
||
for (const element of iterable) {
|
||
value = reducer(value, element);
|
||
}
|
||
return value;
|
||
}
|
||
Iterable.reduce = reduce;
|
||
/**
|
||
* Returns an iterable slice of the array, with the same semantics as `array.slice()`.
|
||
*/
|
||
function* slice(arr, from, to = arr.length) {
|
||
if (from < 0) {
|
||
from += arr.length;
|
||
}
|
||
if (to < 0) {
|
||
to += arr.length;
|
||
}
|
||
else if (to > arr.length) {
|
||
to = arr.length;
|
||
}
|
||
for (; from < to; from++) {
|
||
yield arr[from];
|
||
}
|
||
}
|
||
Iterable.slice = slice;
|
||
/**
|
||
* Consumes `atMost` elements from iterable and returns the consumed elements,
|
||
* and an iterable for the rest of the elements.
|
||
*/
|
||
function consume(iterable, atMost = Number.POSITIVE_INFINITY) {
|
||
const consumed = [];
|
||
if (atMost === 0) {
|
||
return [consumed, iterable];
|
||
}
|
||
const iterator = iterable[Symbol.iterator]();
|
||
for (let i = 0; i < atMost; i++) {
|
||
const next = iterator.next();
|
||
if (next.done) {
|
||
return [consumed, Iterable.empty()];
|
||
}
|
||
consumed.push(next.value);
|
||
}
|
||
return [consumed, { [Symbol.iterator]() { return iterator; } }];
|
||
}
|
||
Iterable.consume = consume;
|
||
async function asyncToArray(iterable) {
|
||
const result = [];
|
||
for await (const item of iterable) {
|
||
result.push(item);
|
||
}
|
||
return Promise.resolve(result);
|
||
}
|
||
Iterable.asyncToArray = asyncToArray;
|
||
})(Iterable || (exports.Iterable = Iterable = {}));
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[42/*vs/base/common/keyCodes*/], __M([0/*require*/,1/*exports*/]), function (require, exports) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.KeyCodeUtils = exports.IMMUTABLE_KEY_CODE_TO_CODE = exports.IMMUTABLE_CODE_TO_KEY_CODE = exports.NATIVE_WINDOWS_KEY_CODE_TO_KEY_CODE = exports.EVENT_KEY_CODE_MAP = void 0;
|
||
exports.KeyChord = KeyChord;
|
||
class KeyCodeStrMap {
|
||
constructor() {
|
||
this._keyCodeToStr = [];
|
||
this._strToKeyCode = Object.create(null);
|
||
}
|
||
define(keyCode, str) {
|
||
this._keyCodeToStr[keyCode] = str;
|
||
this._strToKeyCode[str.toLowerCase()] = keyCode;
|
||
}
|
||
keyCodeToStr(keyCode) {
|
||
return this._keyCodeToStr[keyCode];
|
||
}
|
||
strToKeyCode(str) {
|
||
return this._strToKeyCode[str.toLowerCase()] || 0 /* KeyCode.Unknown */;
|
||
}
|
||
}
|
||
const uiMap = new KeyCodeStrMap();
|
||
const userSettingsUSMap = new KeyCodeStrMap();
|
||
const userSettingsGeneralMap = new KeyCodeStrMap();
|
||
exports.EVENT_KEY_CODE_MAP = new Array(230);
|
||
exports.NATIVE_WINDOWS_KEY_CODE_TO_KEY_CODE = {};
|
||
const scanCodeIntToStr = [];
|
||
const scanCodeStrToInt = Object.create(null);
|
||
const scanCodeLowerCaseStrToInt = Object.create(null);
|
||
/**
|
||
* -1 if a ScanCode => KeyCode mapping depends on kb layout.
|
||
*/
|
||
exports.IMMUTABLE_CODE_TO_KEY_CODE = [];
|
||
/**
|
||
* -1 if a KeyCode => ScanCode mapping depends on kb layout.
|
||
*/
|
||
exports.IMMUTABLE_KEY_CODE_TO_CODE = [];
|
||
for (let i = 0; i <= 193 /* ScanCode.MAX_VALUE */; i++) {
|
||
exports.IMMUTABLE_CODE_TO_KEY_CODE[i] = -1 /* KeyCode.DependsOnKbLayout */;
|
||
}
|
||
for (let i = 0; i <= 132 /* KeyCode.MAX_VALUE */; i++) {
|
||
exports.IMMUTABLE_KEY_CODE_TO_CODE[i] = -1 /* ScanCode.DependsOnKbLayout */;
|
||
}
|
||
(function () {
|
||
// See https://msdn.microsoft.com/en-us/library/windows/desktop/dd375731(v=vs.85).aspx
|
||
// See https://github.com/microsoft/node-native-keymap/blob/88c0b0e5/deps/chromium/keyboard_codes_win.h
|
||
const empty = '';
|
||
const mappings = [
|
||
// immutable, scanCode, scanCodeStr, keyCode, keyCodeStr, eventKeyCode, vkey, usUserSettingsLabel, generalUserSettingsLabel
|
||
[1, 0 /* ScanCode.None */, 'None', 0 /* KeyCode.Unknown */, 'unknown', 0, 'VK_UNKNOWN', empty, empty],
|
||
[1, 1 /* ScanCode.Hyper */, 'Hyper', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 2 /* ScanCode.Super */, 'Super', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 3 /* ScanCode.Fn */, 'Fn', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 4 /* ScanCode.FnLock */, 'FnLock', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 5 /* ScanCode.Suspend */, 'Suspend', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 6 /* ScanCode.Resume */, 'Resume', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 7 /* ScanCode.Turbo */, 'Turbo', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 8 /* ScanCode.Sleep */, 'Sleep', 0 /* KeyCode.Unknown */, empty, 0, 'VK_SLEEP', empty, empty],
|
||
[1, 9 /* ScanCode.WakeUp */, 'WakeUp', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[0, 10 /* ScanCode.KeyA */, 'KeyA', 31 /* KeyCode.KeyA */, 'A', 65, 'VK_A', empty, empty],
|
||
[0, 11 /* ScanCode.KeyB */, 'KeyB', 32 /* KeyCode.KeyB */, 'B', 66, 'VK_B', empty, empty],
|
||
[0, 12 /* ScanCode.KeyC */, 'KeyC', 33 /* KeyCode.KeyC */, 'C', 67, 'VK_C', empty, empty],
|
||
[0, 13 /* ScanCode.KeyD */, 'KeyD', 34 /* KeyCode.KeyD */, 'D', 68, 'VK_D', empty, empty],
|
||
[0, 14 /* ScanCode.KeyE */, 'KeyE', 35 /* KeyCode.KeyE */, 'E', 69, 'VK_E', empty, empty],
|
||
[0, 15 /* ScanCode.KeyF */, 'KeyF', 36 /* KeyCode.KeyF */, 'F', 70, 'VK_F', empty, empty],
|
||
[0, 16 /* ScanCode.KeyG */, 'KeyG', 37 /* KeyCode.KeyG */, 'G', 71, 'VK_G', empty, empty],
|
||
[0, 17 /* ScanCode.KeyH */, 'KeyH', 38 /* KeyCode.KeyH */, 'H', 72, 'VK_H', empty, empty],
|
||
[0, 18 /* ScanCode.KeyI */, 'KeyI', 39 /* KeyCode.KeyI */, 'I', 73, 'VK_I', empty, empty],
|
||
[0, 19 /* ScanCode.KeyJ */, 'KeyJ', 40 /* KeyCode.KeyJ */, 'J', 74, 'VK_J', empty, empty],
|
||
[0, 20 /* ScanCode.KeyK */, 'KeyK', 41 /* KeyCode.KeyK */, 'K', 75, 'VK_K', empty, empty],
|
||
[0, 21 /* ScanCode.KeyL */, 'KeyL', 42 /* KeyCode.KeyL */, 'L', 76, 'VK_L', empty, empty],
|
||
[0, 22 /* ScanCode.KeyM */, 'KeyM', 43 /* KeyCode.KeyM */, 'M', 77, 'VK_M', empty, empty],
|
||
[0, 23 /* ScanCode.KeyN */, 'KeyN', 44 /* KeyCode.KeyN */, 'N', 78, 'VK_N', empty, empty],
|
||
[0, 24 /* ScanCode.KeyO */, 'KeyO', 45 /* KeyCode.KeyO */, 'O', 79, 'VK_O', empty, empty],
|
||
[0, 25 /* ScanCode.KeyP */, 'KeyP', 46 /* KeyCode.KeyP */, 'P', 80, 'VK_P', empty, empty],
|
||
[0, 26 /* ScanCode.KeyQ */, 'KeyQ', 47 /* KeyCode.KeyQ */, 'Q', 81, 'VK_Q', empty, empty],
|
||
[0, 27 /* ScanCode.KeyR */, 'KeyR', 48 /* KeyCode.KeyR */, 'R', 82, 'VK_R', empty, empty],
|
||
[0, 28 /* ScanCode.KeyS */, 'KeyS', 49 /* KeyCode.KeyS */, 'S', 83, 'VK_S', empty, empty],
|
||
[0, 29 /* ScanCode.KeyT */, 'KeyT', 50 /* KeyCode.KeyT */, 'T', 84, 'VK_T', empty, empty],
|
||
[0, 30 /* ScanCode.KeyU */, 'KeyU', 51 /* KeyCode.KeyU */, 'U', 85, 'VK_U', empty, empty],
|
||
[0, 31 /* ScanCode.KeyV */, 'KeyV', 52 /* KeyCode.KeyV */, 'V', 86, 'VK_V', empty, empty],
|
||
[0, 32 /* ScanCode.KeyW */, 'KeyW', 53 /* KeyCode.KeyW */, 'W', 87, 'VK_W', empty, empty],
|
||
[0, 33 /* ScanCode.KeyX */, 'KeyX', 54 /* KeyCode.KeyX */, 'X', 88, 'VK_X', empty, empty],
|
||
[0, 34 /* ScanCode.KeyY */, 'KeyY', 55 /* KeyCode.KeyY */, 'Y', 89, 'VK_Y', empty, empty],
|
||
[0, 35 /* ScanCode.KeyZ */, 'KeyZ', 56 /* KeyCode.KeyZ */, 'Z', 90, 'VK_Z', empty, empty],
|
||
[0, 36 /* ScanCode.Digit1 */, 'Digit1', 22 /* KeyCode.Digit1 */, '1', 49, 'VK_1', empty, empty],
|
||
[0, 37 /* ScanCode.Digit2 */, 'Digit2', 23 /* KeyCode.Digit2 */, '2', 50, 'VK_2', empty, empty],
|
||
[0, 38 /* ScanCode.Digit3 */, 'Digit3', 24 /* KeyCode.Digit3 */, '3', 51, 'VK_3', empty, empty],
|
||
[0, 39 /* ScanCode.Digit4 */, 'Digit4', 25 /* KeyCode.Digit4 */, '4', 52, 'VK_4', empty, empty],
|
||
[0, 40 /* ScanCode.Digit5 */, 'Digit5', 26 /* KeyCode.Digit5 */, '5', 53, 'VK_5', empty, empty],
|
||
[0, 41 /* ScanCode.Digit6 */, 'Digit6', 27 /* KeyCode.Digit6 */, '6', 54, 'VK_6', empty, empty],
|
||
[0, 42 /* ScanCode.Digit7 */, 'Digit7', 28 /* KeyCode.Digit7 */, '7', 55, 'VK_7', empty, empty],
|
||
[0, 43 /* ScanCode.Digit8 */, 'Digit8', 29 /* KeyCode.Digit8 */, '8', 56, 'VK_8', empty, empty],
|
||
[0, 44 /* ScanCode.Digit9 */, 'Digit9', 30 /* KeyCode.Digit9 */, '9', 57, 'VK_9', empty, empty],
|
||
[0, 45 /* ScanCode.Digit0 */, 'Digit0', 21 /* KeyCode.Digit0 */, '0', 48, 'VK_0', empty, empty],
|
||
[1, 46 /* ScanCode.Enter */, 'Enter', 3 /* KeyCode.Enter */, 'Enter', 13, 'VK_RETURN', empty, empty],
|
||
[1, 47 /* ScanCode.Escape */, 'Escape', 9 /* KeyCode.Escape */, 'Escape', 27, 'VK_ESCAPE', empty, empty],
|
||
[1, 48 /* ScanCode.Backspace */, 'Backspace', 1 /* KeyCode.Backspace */, 'Backspace', 8, 'VK_BACK', empty, empty],
|
||
[1, 49 /* ScanCode.Tab */, 'Tab', 2 /* KeyCode.Tab */, 'Tab', 9, 'VK_TAB', empty, empty],
|
||
[1, 50 /* ScanCode.Space */, 'Space', 10 /* KeyCode.Space */, 'Space', 32, 'VK_SPACE', empty, empty],
|
||
[0, 51 /* ScanCode.Minus */, 'Minus', 88 /* KeyCode.Minus */, '-', 189, 'VK_OEM_MINUS', '-', 'OEM_MINUS'],
|
||
[0, 52 /* ScanCode.Equal */, 'Equal', 86 /* KeyCode.Equal */, '=', 187, 'VK_OEM_PLUS', '=', 'OEM_PLUS'],
|
||
[0, 53 /* ScanCode.BracketLeft */, 'BracketLeft', 92 /* KeyCode.BracketLeft */, '[', 219, 'VK_OEM_4', '[', 'OEM_4'],
|
||
[0, 54 /* ScanCode.BracketRight */, 'BracketRight', 94 /* KeyCode.BracketRight */, ']', 221, 'VK_OEM_6', ']', 'OEM_6'],
|
||
[0, 55 /* ScanCode.Backslash */, 'Backslash', 93 /* KeyCode.Backslash */, '\\', 220, 'VK_OEM_5', '\\', 'OEM_5'],
|
||
[0, 56 /* ScanCode.IntlHash */, 'IntlHash', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty], // has been dropped from the w3c spec
|
||
[0, 57 /* ScanCode.Semicolon */, 'Semicolon', 85 /* KeyCode.Semicolon */, ';', 186, 'VK_OEM_1', ';', 'OEM_1'],
|
||
[0, 58 /* ScanCode.Quote */, 'Quote', 95 /* KeyCode.Quote */, '\'', 222, 'VK_OEM_7', '\'', 'OEM_7'],
|
||
[0, 59 /* ScanCode.Backquote */, 'Backquote', 91 /* KeyCode.Backquote */, '`', 192, 'VK_OEM_3', '`', 'OEM_3'],
|
||
[0, 60 /* ScanCode.Comma */, 'Comma', 87 /* KeyCode.Comma */, ',', 188, 'VK_OEM_COMMA', ',', 'OEM_COMMA'],
|
||
[0, 61 /* ScanCode.Period */, 'Period', 89 /* KeyCode.Period */, '.', 190, 'VK_OEM_PERIOD', '.', 'OEM_PERIOD'],
|
||
[0, 62 /* ScanCode.Slash */, 'Slash', 90 /* KeyCode.Slash */, '/', 191, 'VK_OEM_2', '/', 'OEM_2'],
|
||
[1, 63 /* ScanCode.CapsLock */, 'CapsLock', 8 /* KeyCode.CapsLock */, 'CapsLock', 20, 'VK_CAPITAL', empty, empty],
|
||
[1, 64 /* ScanCode.F1 */, 'F1', 59 /* KeyCode.F1 */, 'F1', 112, 'VK_F1', empty, empty],
|
||
[1, 65 /* ScanCode.F2 */, 'F2', 60 /* KeyCode.F2 */, 'F2', 113, 'VK_F2', empty, empty],
|
||
[1, 66 /* ScanCode.F3 */, 'F3', 61 /* KeyCode.F3 */, 'F3', 114, 'VK_F3', empty, empty],
|
||
[1, 67 /* ScanCode.F4 */, 'F4', 62 /* KeyCode.F4 */, 'F4', 115, 'VK_F4', empty, empty],
|
||
[1, 68 /* ScanCode.F5 */, 'F5', 63 /* KeyCode.F5 */, 'F5', 116, 'VK_F5', empty, empty],
|
||
[1, 69 /* ScanCode.F6 */, 'F6', 64 /* KeyCode.F6 */, 'F6', 117, 'VK_F6', empty, empty],
|
||
[1, 70 /* ScanCode.F7 */, 'F7', 65 /* KeyCode.F7 */, 'F7', 118, 'VK_F7', empty, empty],
|
||
[1, 71 /* ScanCode.F8 */, 'F8', 66 /* KeyCode.F8 */, 'F8', 119, 'VK_F8', empty, empty],
|
||
[1, 72 /* ScanCode.F9 */, 'F9', 67 /* KeyCode.F9 */, 'F9', 120, 'VK_F9', empty, empty],
|
||
[1, 73 /* ScanCode.F10 */, 'F10', 68 /* KeyCode.F10 */, 'F10', 121, 'VK_F10', empty, empty],
|
||
[1, 74 /* ScanCode.F11 */, 'F11', 69 /* KeyCode.F11 */, 'F11', 122, 'VK_F11', empty, empty],
|
||
[1, 75 /* ScanCode.F12 */, 'F12', 70 /* KeyCode.F12 */, 'F12', 123, 'VK_F12', empty, empty],
|
||
[1, 76 /* ScanCode.PrintScreen */, 'PrintScreen', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 77 /* ScanCode.ScrollLock */, 'ScrollLock', 84 /* KeyCode.ScrollLock */, 'ScrollLock', 145, 'VK_SCROLL', empty, empty],
|
||
[1, 78 /* ScanCode.Pause */, 'Pause', 7 /* KeyCode.PauseBreak */, 'PauseBreak', 19, 'VK_PAUSE', empty, empty],
|
||
[1, 79 /* ScanCode.Insert */, 'Insert', 19 /* KeyCode.Insert */, 'Insert', 45, 'VK_INSERT', empty, empty],
|
||
[1, 80 /* ScanCode.Home */, 'Home', 14 /* KeyCode.Home */, 'Home', 36, 'VK_HOME', empty, empty],
|
||
[1, 81 /* ScanCode.PageUp */, 'PageUp', 11 /* KeyCode.PageUp */, 'PageUp', 33, 'VK_PRIOR', empty, empty],
|
||
[1, 82 /* ScanCode.Delete */, 'Delete', 20 /* KeyCode.Delete */, 'Delete', 46, 'VK_DELETE', empty, empty],
|
||
[1, 83 /* ScanCode.End */, 'End', 13 /* KeyCode.End */, 'End', 35, 'VK_END', empty, empty],
|
||
[1, 84 /* ScanCode.PageDown */, 'PageDown', 12 /* KeyCode.PageDown */, 'PageDown', 34, 'VK_NEXT', empty, empty],
|
||
[1, 85 /* ScanCode.ArrowRight */, 'ArrowRight', 17 /* KeyCode.RightArrow */, 'RightArrow', 39, 'VK_RIGHT', 'Right', empty],
|
||
[1, 86 /* ScanCode.ArrowLeft */, 'ArrowLeft', 15 /* KeyCode.LeftArrow */, 'LeftArrow', 37, 'VK_LEFT', 'Left', empty],
|
||
[1, 87 /* ScanCode.ArrowDown */, 'ArrowDown', 18 /* KeyCode.DownArrow */, 'DownArrow', 40, 'VK_DOWN', 'Down', empty],
|
||
[1, 88 /* ScanCode.ArrowUp */, 'ArrowUp', 16 /* KeyCode.UpArrow */, 'UpArrow', 38, 'VK_UP', 'Up', empty],
|
||
[1, 89 /* ScanCode.NumLock */, 'NumLock', 83 /* KeyCode.NumLock */, 'NumLock', 144, 'VK_NUMLOCK', empty, empty],
|
||
[1, 90 /* ScanCode.NumpadDivide */, 'NumpadDivide', 113 /* KeyCode.NumpadDivide */, 'NumPad_Divide', 111, 'VK_DIVIDE', empty, empty],
|
||
[1, 91 /* ScanCode.NumpadMultiply */, 'NumpadMultiply', 108 /* KeyCode.NumpadMultiply */, 'NumPad_Multiply', 106, 'VK_MULTIPLY', empty, empty],
|
||
[1, 92 /* ScanCode.NumpadSubtract */, 'NumpadSubtract', 111 /* KeyCode.NumpadSubtract */, 'NumPad_Subtract', 109, 'VK_SUBTRACT', empty, empty],
|
||
[1, 93 /* ScanCode.NumpadAdd */, 'NumpadAdd', 109 /* KeyCode.NumpadAdd */, 'NumPad_Add', 107, 'VK_ADD', empty, empty],
|
||
[1, 94 /* ScanCode.NumpadEnter */, 'NumpadEnter', 3 /* KeyCode.Enter */, empty, 0, empty, empty, empty],
|
||
[1, 95 /* ScanCode.Numpad1 */, 'Numpad1', 99 /* KeyCode.Numpad1 */, 'NumPad1', 97, 'VK_NUMPAD1', empty, empty],
|
||
[1, 96 /* ScanCode.Numpad2 */, 'Numpad2', 100 /* KeyCode.Numpad2 */, 'NumPad2', 98, 'VK_NUMPAD2', empty, empty],
|
||
[1, 97 /* ScanCode.Numpad3 */, 'Numpad3', 101 /* KeyCode.Numpad3 */, 'NumPad3', 99, 'VK_NUMPAD3', empty, empty],
|
||
[1, 98 /* ScanCode.Numpad4 */, 'Numpad4', 102 /* KeyCode.Numpad4 */, 'NumPad4', 100, 'VK_NUMPAD4', empty, empty],
|
||
[1, 99 /* ScanCode.Numpad5 */, 'Numpad5', 103 /* KeyCode.Numpad5 */, 'NumPad5', 101, 'VK_NUMPAD5', empty, empty],
|
||
[1, 100 /* ScanCode.Numpad6 */, 'Numpad6', 104 /* KeyCode.Numpad6 */, 'NumPad6', 102, 'VK_NUMPAD6', empty, empty],
|
||
[1, 101 /* ScanCode.Numpad7 */, 'Numpad7', 105 /* KeyCode.Numpad7 */, 'NumPad7', 103, 'VK_NUMPAD7', empty, empty],
|
||
[1, 102 /* ScanCode.Numpad8 */, 'Numpad8', 106 /* KeyCode.Numpad8 */, 'NumPad8', 104, 'VK_NUMPAD8', empty, empty],
|
||
[1, 103 /* ScanCode.Numpad9 */, 'Numpad9', 107 /* KeyCode.Numpad9 */, 'NumPad9', 105, 'VK_NUMPAD9', empty, empty],
|
||
[1, 104 /* ScanCode.Numpad0 */, 'Numpad0', 98 /* KeyCode.Numpad0 */, 'NumPad0', 96, 'VK_NUMPAD0', empty, empty],
|
||
[1, 105 /* ScanCode.NumpadDecimal */, 'NumpadDecimal', 112 /* KeyCode.NumpadDecimal */, 'NumPad_Decimal', 110, 'VK_DECIMAL', empty, empty],
|
||
[0, 106 /* ScanCode.IntlBackslash */, 'IntlBackslash', 97 /* KeyCode.IntlBackslash */, 'OEM_102', 226, 'VK_OEM_102', empty, empty],
|
||
[1, 107 /* ScanCode.ContextMenu */, 'ContextMenu', 58 /* KeyCode.ContextMenu */, 'ContextMenu', 93, empty, empty, empty],
|
||
[1, 108 /* ScanCode.Power */, 'Power', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 109 /* ScanCode.NumpadEqual */, 'NumpadEqual', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 110 /* ScanCode.F13 */, 'F13', 71 /* KeyCode.F13 */, 'F13', 124, 'VK_F13', empty, empty],
|
||
[1, 111 /* ScanCode.F14 */, 'F14', 72 /* KeyCode.F14 */, 'F14', 125, 'VK_F14', empty, empty],
|
||
[1, 112 /* ScanCode.F15 */, 'F15', 73 /* KeyCode.F15 */, 'F15', 126, 'VK_F15', empty, empty],
|
||
[1, 113 /* ScanCode.F16 */, 'F16', 74 /* KeyCode.F16 */, 'F16', 127, 'VK_F16', empty, empty],
|
||
[1, 114 /* ScanCode.F17 */, 'F17', 75 /* KeyCode.F17 */, 'F17', 128, 'VK_F17', empty, empty],
|
||
[1, 115 /* ScanCode.F18 */, 'F18', 76 /* KeyCode.F18 */, 'F18', 129, 'VK_F18', empty, empty],
|
||
[1, 116 /* ScanCode.F19 */, 'F19', 77 /* KeyCode.F19 */, 'F19', 130, 'VK_F19', empty, empty],
|
||
[1, 117 /* ScanCode.F20 */, 'F20', 78 /* KeyCode.F20 */, 'F20', 131, 'VK_F20', empty, empty],
|
||
[1, 118 /* ScanCode.F21 */, 'F21', 79 /* KeyCode.F21 */, 'F21', 132, 'VK_F21', empty, empty],
|
||
[1, 119 /* ScanCode.F22 */, 'F22', 80 /* KeyCode.F22 */, 'F22', 133, 'VK_F22', empty, empty],
|
||
[1, 120 /* ScanCode.F23 */, 'F23', 81 /* KeyCode.F23 */, 'F23', 134, 'VK_F23', empty, empty],
|
||
[1, 121 /* ScanCode.F24 */, 'F24', 82 /* KeyCode.F24 */, 'F24', 135, 'VK_F24', empty, empty],
|
||
[1, 122 /* ScanCode.Open */, 'Open', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 123 /* ScanCode.Help */, 'Help', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 124 /* ScanCode.Select */, 'Select', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 125 /* ScanCode.Again */, 'Again', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 126 /* ScanCode.Undo */, 'Undo', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 127 /* ScanCode.Cut */, 'Cut', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 128 /* ScanCode.Copy */, 'Copy', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 129 /* ScanCode.Paste */, 'Paste', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 130 /* ScanCode.Find */, 'Find', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 131 /* ScanCode.AudioVolumeMute */, 'AudioVolumeMute', 117 /* KeyCode.AudioVolumeMute */, 'AudioVolumeMute', 173, 'VK_VOLUME_MUTE', empty, empty],
|
||
[1, 132 /* ScanCode.AudioVolumeUp */, 'AudioVolumeUp', 118 /* KeyCode.AudioVolumeUp */, 'AudioVolumeUp', 175, 'VK_VOLUME_UP', empty, empty],
|
||
[1, 133 /* ScanCode.AudioVolumeDown */, 'AudioVolumeDown', 119 /* KeyCode.AudioVolumeDown */, 'AudioVolumeDown', 174, 'VK_VOLUME_DOWN', empty, empty],
|
||
[1, 134 /* ScanCode.NumpadComma */, 'NumpadComma', 110 /* KeyCode.NUMPAD_SEPARATOR */, 'NumPad_Separator', 108, 'VK_SEPARATOR', empty, empty],
|
||
[0, 135 /* ScanCode.IntlRo */, 'IntlRo', 115 /* KeyCode.ABNT_C1 */, 'ABNT_C1', 193, 'VK_ABNT_C1', empty, empty],
|
||
[1, 136 /* ScanCode.KanaMode */, 'KanaMode', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[0, 137 /* ScanCode.IntlYen */, 'IntlYen', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 138 /* ScanCode.Convert */, 'Convert', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 139 /* ScanCode.NonConvert */, 'NonConvert', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 140 /* ScanCode.Lang1 */, 'Lang1', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 141 /* ScanCode.Lang2 */, 'Lang2', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 142 /* ScanCode.Lang3 */, 'Lang3', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 143 /* ScanCode.Lang4 */, 'Lang4', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 144 /* ScanCode.Lang5 */, 'Lang5', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 145 /* ScanCode.Abort */, 'Abort', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 146 /* ScanCode.Props */, 'Props', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 147 /* ScanCode.NumpadParenLeft */, 'NumpadParenLeft', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 148 /* ScanCode.NumpadParenRight */, 'NumpadParenRight', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 149 /* ScanCode.NumpadBackspace */, 'NumpadBackspace', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 150 /* ScanCode.NumpadMemoryStore */, 'NumpadMemoryStore', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 151 /* ScanCode.NumpadMemoryRecall */, 'NumpadMemoryRecall', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 152 /* ScanCode.NumpadMemoryClear */, 'NumpadMemoryClear', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 153 /* ScanCode.NumpadMemoryAdd */, 'NumpadMemoryAdd', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 154 /* ScanCode.NumpadMemorySubtract */, 'NumpadMemorySubtract', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 155 /* ScanCode.NumpadClear */, 'NumpadClear', 131 /* KeyCode.Clear */, 'Clear', 12, 'VK_CLEAR', empty, empty],
|
||
[1, 156 /* ScanCode.NumpadClearEntry */, 'NumpadClearEntry', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 5 /* KeyCode.Ctrl */, 'Ctrl', 17, 'VK_CONTROL', empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 4 /* KeyCode.Shift */, 'Shift', 16, 'VK_SHIFT', empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 6 /* KeyCode.Alt */, 'Alt', 18, 'VK_MENU', empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 57 /* KeyCode.Meta */, 'Meta', 91, 'VK_COMMAND', empty, empty],
|
||
[1, 157 /* ScanCode.ControlLeft */, 'ControlLeft', 5 /* KeyCode.Ctrl */, empty, 0, 'VK_LCONTROL', empty, empty],
|
||
[1, 158 /* ScanCode.ShiftLeft */, 'ShiftLeft', 4 /* KeyCode.Shift */, empty, 0, 'VK_LSHIFT', empty, empty],
|
||
[1, 159 /* ScanCode.AltLeft */, 'AltLeft', 6 /* KeyCode.Alt */, empty, 0, 'VK_LMENU', empty, empty],
|
||
[1, 160 /* ScanCode.MetaLeft */, 'MetaLeft', 57 /* KeyCode.Meta */, empty, 0, 'VK_LWIN', empty, empty],
|
||
[1, 161 /* ScanCode.ControlRight */, 'ControlRight', 5 /* KeyCode.Ctrl */, empty, 0, 'VK_RCONTROL', empty, empty],
|
||
[1, 162 /* ScanCode.ShiftRight */, 'ShiftRight', 4 /* KeyCode.Shift */, empty, 0, 'VK_RSHIFT', empty, empty],
|
||
[1, 163 /* ScanCode.AltRight */, 'AltRight', 6 /* KeyCode.Alt */, empty, 0, 'VK_RMENU', empty, empty],
|
||
[1, 164 /* ScanCode.MetaRight */, 'MetaRight', 57 /* KeyCode.Meta */, empty, 0, 'VK_RWIN', empty, empty],
|
||
[1, 165 /* ScanCode.BrightnessUp */, 'BrightnessUp', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 166 /* ScanCode.BrightnessDown */, 'BrightnessDown', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 167 /* ScanCode.MediaPlay */, 'MediaPlay', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 168 /* ScanCode.MediaRecord */, 'MediaRecord', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 169 /* ScanCode.MediaFastForward */, 'MediaFastForward', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 170 /* ScanCode.MediaRewind */, 'MediaRewind', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 171 /* ScanCode.MediaTrackNext */, 'MediaTrackNext', 124 /* KeyCode.MediaTrackNext */, 'MediaTrackNext', 176, 'VK_MEDIA_NEXT_TRACK', empty, empty],
|
||
[1, 172 /* ScanCode.MediaTrackPrevious */, 'MediaTrackPrevious', 125 /* KeyCode.MediaTrackPrevious */, 'MediaTrackPrevious', 177, 'VK_MEDIA_PREV_TRACK', empty, empty],
|
||
[1, 173 /* ScanCode.MediaStop */, 'MediaStop', 126 /* KeyCode.MediaStop */, 'MediaStop', 178, 'VK_MEDIA_STOP', empty, empty],
|
||
[1, 174 /* ScanCode.Eject */, 'Eject', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 175 /* ScanCode.MediaPlayPause */, 'MediaPlayPause', 127 /* KeyCode.MediaPlayPause */, 'MediaPlayPause', 179, 'VK_MEDIA_PLAY_PAUSE', empty, empty],
|
||
[1, 176 /* ScanCode.MediaSelect */, 'MediaSelect', 128 /* KeyCode.LaunchMediaPlayer */, 'LaunchMediaPlayer', 181, 'VK_MEDIA_LAUNCH_MEDIA_SELECT', empty, empty],
|
||
[1, 177 /* ScanCode.LaunchMail */, 'LaunchMail', 129 /* KeyCode.LaunchMail */, 'LaunchMail', 180, 'VK_MEDIA_LAUNCH_MAIL', empty, empty],
|
||
[1, 178 /* ScanCode.LaunchApp2 */, 'LaunchApp2', 130 /* KeyCode.LaunchApp2 */, 'LaunchApp2', 183, 'VK_MEDIA_LAUNCH_APP2', empty, empty],
|
||
[1, 179 /* ScanCode.LaunchApp1 */, 'LaunchApp1', 0 /* KeyCode.Unknown */, empty, 0, 'VK_MEDIA_LAUNCH_APP1', empty, empty],
|
||
[1, 180 /* ScanCode.SelectTask */, 'SelectTask', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 181 /* ScanCode.LaunchScreenSaver */, 'LaunchScreenSaver', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 182 /* ScanCode.BrowserSearch */, 'BrowserSearch', 120 /* KeyCode.BrowserSearch */, 'BrowserSearch', 170, 'VK_BROWSER_SEARCH', empty, empty],
|
||
[1, 183 /* ScanCode.BrowserHome */, 'BrowserHome', 121 /* KeyCode.BrowserHome */, 'BrowserHome', 172, 'VK_BROWSER_HOME', empty, empty],
|
||
[1, 184 /* ScanCode.BrowserBack */, 'BrowserBack', 122 /* KeyCode.BrowserBack */, 'BrowserBack', 166, 'VK_BROWSER_BACK', empty, empty],
|
||
[1, 185 /* ScanCode.BrowserForward */, 'BrowserForward', 123 /* KeyCode.BrowserForward */, 'BrowserForward', 167, 'VK_BROWSER_FORWARD', empty, empty],
|
||
[1, 186 /* ScanCode.BrowserStop */, 'BrowserStop', 0 /* KeyCode.Unknown */, empty, 0, 'VK_BROWSER_STOP', empty, empty],
|
||
[1, 187 /* ScanCode.BrowserRefresh */, 'BrowserRefresh', 0 /* KeyCode.Unknown */, empty, 0, 'VK_BROWSER_REFRESH', empty, empty],
|
||
[1, 188 /* ScanCode.BrowserFavorites */, 'BrowserFavorites', 0 /* KeyCode.Unknown */, empty, 0, 'VK_BROWSER_FAVORITES', empty, empty],
|
||
[1, 189 /* ScanCode.ZoomToggle */, 'ZoomToggle', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 190 /* ScanCode.MailReply */, 'MailReply', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 191 /* ScanCode.MailForward */, 'MailForward', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
[1, 192 /* ScanCode.MailSend */, 'MailSend', 0 /* KeyCode.Unknown */, empty, 0, empty, empty, empty],
|
||
// See https://lists.w3.org/Archives/Public/www-dom/2010JulSep/att-0182/keyCode-spec.html
|
||
// If an Input Method Editor is processing key input and the event is keydown, return 229.
|
||
[1, 0 /* ScanCode.None */, empty, 114 /* KeyCode.KEY_IN_COMPOSITION */, 'KeyInComposition', 229, empty, empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 116 /* KeyCode.ABNT_C2 */, 'ABNT_C2', 194, 'VK_ABNT_C2', empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 96 /* KeyCode.OEM_8 */, 'OEM_8', 223, 'VK_OEM_8', empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 0 /* KeyCode.Unknown */, empty, 0, 'VK_KANA', empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 0 /* KeyCode.Unknown */, empty, 0, 'VK_HANGUL', empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 0 /* KeyCode.Unknown */, empty, 0, 'VK_JUNJA', empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 0 /* KeyCode.Unknown */, empty, 0, 'VK_FINAL', empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 0 /* KeyCode.Unknown */, empty, 0, 'VK_HANJA', empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 0 /* KeyCode.Unknown */, empty, 0, 'VK_KANJI', empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 0 /* KeyCode.Unknown */, empty, 0, 'VK_CONVERT', empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 0 /* KeyCode.Unknown */, empty, 0, 'VK_NONCONVERT', empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 0 /* KeyCode.Unknown */, empty, 0, 'VK_ACCEPT', empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 0 /* KeyCode.Unknown */, empty, 0, 'VK_MODECHANGE', empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 0 /* KeyCode.Unknown */, empty, 0, 'VK_SELECT', empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 0 /* KeyCode.Unknown */, empty, 0, 'VK_PRINT', empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 0 /* KeyCode.Unknown */, empty, 0, 'VK_EXECUTE', empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 0 /* KeyCode.Unknown */, empty, 0, 'VK_SNAPSHOT', empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 0 /* KeyCode.Unknown */, empty, 0, 'VK_HELP', empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 0 /* KeyCode.Unknown */, empty, 0, 'VK_APPS', empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 0 /* KeyCode.Unknown */, empty, 0, 'VK_PROCESSKEY', empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 0 /* KeyCode.Unknown */, empty, 0, 'VK_PACKET', empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 0 /* KeyCode.Unknown */, empty, 0, 'VK_DBE_SBCSCHAR', empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 0 /* KeyCode.Unknown */, empty, 0, 'VK_DBE_DBCSCHAR', empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 0 /* KeyCode.Unknown */, empty, 0, 'VK_ATTN', empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 0 /* KeyCode.Unknown */, empty, 0, 'VK_CRSEL', empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 0 /* KeyCode.Unknown */, empty, 0, 'VK_EXSEL', empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 0 /* KeyCode.Unknown */, empty, 0, 'VK_EREOF', empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 0 /* KeyCode.Unknown */, empty, 0, 'VK_PLAY', empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 0 /* KeyCode.Unknown */, empty, 0, 'VK_ZOOM', empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 0 /* KeyCode.Unknown */, empty, 0, 'VK_NONAME', empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 0 /* KeyCode.Unknown */, empty, 0, 'VK_PA1', empty, empty],
|
||
[1, 0 /* ScanCode.None */, empty, 0 /* KeyCode.Unknown */, empty, 0, 'VK_OEM_CLEAR', empty, empty],
|
||
];
|
||
const seenKeyCode = [];
|
||
const seenScanCode = [];
|
||
for (const mapping of mappings) {
|
||
const [immutable, scanCode, scanCodeStr, keyCode, keyCodeStr, eventKeyCode, vkey, usUserSettingsLabel, generalUserSettingsLabel] = mapping;
|
||
if (!seenScanCode[scanCode]) {
|
||
seenScanCode[scanCode] = true;
|
||
scanCodeIntToStr[scanCode] = scanCodeStr;
|
||
scanCodeStrToInt[scanCodeStr] = scanCode;
|
||
scanCodeLowerCaseStrToInt[scanCodeStr.toLowerCase()] = scanCode;
|
||
if (immutable) {
|
||
exports.IMMUTABLE_CODE_TO_KEY_CODE[scanCode] = keyCode;
|
||
if ((keyCode !== 0 /* KeyCode.Unknown */)
|
||
&& (keyCode !== 3 /* KeyCode.Enter */)
|
||
&& (keyCode !== 5 /* KeyCode.Ctrl */)
|
||
&& (keyCode !== 4 /* KeyCode.Shift */)
|
||
&& (keyCode !== 6 /* KeyCode.Alt */)
|
||
&& (keyCode !== 57 /* KeyCode.Meta */)) {
|
||
exports.IMMUTABLE_KEY_CODE_TO_CODE[keyCode] = scanCode;
|
||
}
|
||
}
|
||
}
|
||
if (!seenKeyCode[keyCode]) {
|
||
seenKeyCode[keyCode] = true;
|
||
if (!keyCodeStr) {
|
||
throw new Error(`String representation missing for key code ${keyCode} around scan code ${scanCodeStr}`);
|
||
}
|
||
uiMap.define(keyCode, keyCodeStr);
|
||
userSettingsUSMap.define(keyCode, usUserSettingsLabel || keyCodeStr);
|
||
userSettingsGeneralMap.define(keyCode, generalUserSettingsLabel || usUserSettingsLabel || keyCodeStr);
|
||
}
|
||
if (eventKeyCode) {
|
||
exports.EVENT_KEY_CODE_MAP[eventKeyCode] = keyCode;
|
||
}
|
||
if (vkey) {
|
||
exports.NATIVE_WINDOWS_KEY_CODE_TO_KEY_CODE[vkey] = keyCode;
|
||
}
|
||
}
|
||
// Manually added due to the exclusion above (due to duplication with NumpadEnter)
|
||
exports.IMMUTABLE_KEY_CODE_TO_CODE[3 /* KeyCode.Enter */] = 46 /* ScanCode.Enter */;
|
||
})();
|
||
var KeyCodeUtils;
|
||
(function (KeyCodeUtils) {
|
||
function toString(keyCode) {
|
||
return uiMap.keyCodeToStr(keyCode);
|
||
}
|
||
KeyCodeUtils.toString = toString;
|
||
function fromString(key) {
|
||
return uiMap.strToKeyCode(key);
|
||
}
|
||
KeyCodeUtils.fromString = fromString;
|
||
function toUserSettingsUS(keyCode) {
|
||
return userSettingsUSMap.keyCodeToStr(keyCode);
|
||
}
|
||
KeyCodeUtils.toUserSettingsUS = toUserSettingsUS;
|
||
function toUserSettingsGeneral(keyCode) {
|
||
return userSettingsGeneralMap.keyCodeToStr(keyCode);
|
||
}
|
||
KeyCodeUtils.toUserSettingsGeneral = toUserSettingsGeneral;
|
||
function fromUserSettings(key) {
|
||
return userSettingsUSMap.strToKeyCode(key) || userSettingsGeneralMap.strToKeyCode(key);
|
||
}
|
||
KeyCodeUtils.fromUserSettings = fromUserSettings;
|
||
function toElectronAccelerator(keyCode) {
|
||
if (keyCode >= 98 /* KeyCode.Numpad0 */ && keyCode <= 113 /* KeyCode.NumpadDivide */) {
|
||
// [Electron Accelerators] Electron is able to parse numpad keys, but unfortunately it
|
||
// renders them just as regular keys in menus. For example, num0 is rendered as "0",
|
||
// numdiv is rendered as "/", numsub is rendered as "-".
|
||
//
|
||
// This can lead to incredible confusion, as it makes numpad based keybindings indistinguishable
|
||
// from keybindings based on regular keys.
|
||
//
|
||
// We therefore need to fall back to custom rendering for numpad keys.
|
||
return null;
|
||
}
|
||
switch (keyCode) {
|
||
case 16 /* KeyCode.UpArrow */:
|
||
return 'Up';
|
||
case 18 /* KeyCode.DownArrow */:
|
||
return 'Down';
|
||
case 15 /* KeyCode.LeftArrow */:
|
||
return 'Left';
|
||
case 17 /* KeyCode.RightArrow */:
|
||
return 'Right';
|
||
}
|
||
return uiMap.keyCodeToStr(keyCode);
|
||
}
|
||
KeyCodeUtils.toElectronAccelerator = toElectronAccelerator;
|
||
})(KeyCodeUtils || (exports.KeyCodeUtils = KeyCodeUtils = {}));
|
||
function KeyChord(firstPart, secondPart) {
|
||
const chordPart = ((secondPart & 0x0000FFFF) << 16) >>> 0;
|
||
return (firstPart | chordPart) >>> 0;
|
||
}
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[43/*vs/base/common/lazy*/], __M([0/*require*/,1/*exports*/]), function (require, exports) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.Lazy = void 0;
|
||
class Lazy {
|
||
constructor(executor) {
|
||
this.executor = executor;
|
||
this._didRun = false;
|
||
}
|
||
/**
|
||
* Get the wrapped value.
|
||
*
|
||
* This will force evaluation of the lazy value if it has not been resolved yet. Lazy values are only
|
||
* resolved once. `getValue` will re-throw exceptions that are hit while resolving the value
|
||
*/
|
||
get value() {
|
||
if (!this._didRun) {
|
||
try {
|
||
this._value = this.executor();
|
||
}
|
||
catch (err) {
|
||
this._error = err;
|
||
}
|
||
finally {
|
||
this._didRun = true;
|
||
}
|
||
}
|
||
if (this._error) {
|
||
throw this._error;
|
||
}
|
||
return this._value;
|
||
}
|
||
/**
|
||
* Get the wrapped value without forcing evaluation.
|
||
*/
|
||
get rawValue() { return this._value; }
|
||
}
|
||
exports.Lazy = Lazy;
|
||
});
|
||
|
||
define(__m[8/*vs/base/common/lifecycle*/], __M([0/*require*/,1/*exports*/,18/*vs/base/common/functional*/,19/*vs/base/common/iterator*/]), function (require, exports, functional_1, iterator_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.DisposableMap = exports.ImmortalReference = exports.RefCountedDisposable = exports.MutableDisposable = exports.Disposable = exports.DisposableStore = void 0;
|
||
exports.setDisposableTracker = setDisposableTracker;
|
||
exports.trackDisposable = trackDisposable;
|
||
exports.markAsDisposed = markAsDisposed;
|
||
exports.markAsSingleton = markAsSingleton;
|
||
exports.isDisposable = isDisposable;
|
||
exports.dispose = dispose;
|
||
exports.combinedDisposable = combinedDisposable;
|
||
exports.toDisposable = toDisposable;
|
||
// #region Disposable Tracking
|
||
/**
|
||
* Enables logging of potentially leaked disposables.
|
||
*
|
||
* A disposable is considered leaked if it is not disposed or not registered as the child of
|
||
* another disposable. This tracking is very simple an only works for classes that either
|
||
* extend Disposable or use a DisposableStore. This means there are a lot of false positives.
|
||
*/
|
||
const TRACK_DISPOSABLES = false;
|
||
let disposableTracker = null;
|
||
function setDisposableTracker(tracker) {
|
||
disposableTracker = tracker;
|
||
}
|
||
if (TRACK_DISPOSABLES) {
|
||
const __is_disposable_tracked__ = '__is_disposable_tracked__';
|
||
setDisposableTracker(new class {
|
||
trackDisposable(x) {
|
||
const stack = new Error('Potentially leaked disposable').stack;
|
||
setTimeout(() => {
|
||
if (!x[__is_disposable_tracked__]) {
|
||
console.log(stack);
|
||
}
|
||
}, 3000);
|
||
}
|
||
setParent(child, parent) {
|
||
if (child && child !== Disposable.None) {
|
||
try {
|
||
child[__is_disposable_tracked__] = true;
|
||
}
|
||
catch {
|
||
// noop
|
||
}
|
||
}
|
||
}
|
||
markAsDisposed(disposable) {
|
||
if (disposable && disposable !== Disposable.None) {
|
||
try {
|
||
disposable[__is_disposable_tracked__] = true;
|
||
}
|
||
catch {
|
||
// noop
|
||
}
|
||
}
|
||
}
|
||
markAsSingleton(disposable) { }
|
||
});
|
||
}
|
||
function trackDisposable(x) {
|
||
disposableTracker?.trackDisposable(x);
|
||
return x;
|
||
}
|
||
function markAsDisposed(disposable) {
|
||
disposableTracker?.markAsDisposed(disposable);
|
||
}
|
||
function setParentOfDisposable(child, parent) {
|
||
disposableTracker?.setParent(child, parent);
|
||
}
|
||
function setParentOfDisposables(children, parent) {
|
||
if (!disposableTracker) {
|
||
return;
|
||
}
|
||
for (const child of children) {
|
||
disposableTracker.setParent(child, parent);
|
||
}
|
||
}
|
||
/**
|
||
* Indicates that the given object is a singleton which does not need to be disposed.
|
||
*/
|
||
function markAsSingleton(singleton) {
|
||
disposableTracker?.markAsSingleton(singleton);
|
||
return singleton;
|
||
}
|
||
/**
|
||
* Check if `thing` is {@link IDisposable disposable}.
|
||
*/
|
||
function isDisposable(thing) {
|
||
return typeof thing === 'object' && thing !== null && typeof thing.dispose === 'function' && thing.dispose.length === 0;
|
||
}
|
||
function dispose(arg) {
|
||
if (iterator_1.Iterable.is(arg)) {
|
||
const errors = [];
|
||
for (const d of arg) {
|
||
if (d) {
|
||
try {
|
||
d.dispose();
|
||
}
|
||
catch (e) {
|
||
errors.push(e);
|
||
}
|
||
}
|
||
}
|
||
if (errors.length === 1) {
|
||
throw errors[0];
|
||
}
|
||
else if (errors.length > 1) {
|
||
throw new AggregateError(errors, 'Encountered errors while disposing of store');
|
||
}
|
||
return Array.isArray(arg) ? [] : arg;
|
||
}
|
||
else if (arg) {
|
||
arg.dispose();
|
||
return arg;
|
||
}
|
||
}
|
||
/**
|
||
* Combine multiple disposable values into a single {@link IDisposable}.
|
||
*/
|
||
function combinedDisposable(...disposables) {
|
||
const parent = toDisposable(() => dispose(disposables));
|
||
setParentOfDisposables(disposables, parent);
|
||
return parent;
|
||
}
|
||
/**
|
||
* Turn a function that implements dispose into an {@link IDisposable}.
|
||
*
|
||
* @param fn Clean up function, guaranteed to be called only **once**.
|
||
*/
|
||
function toDisposable(fn) {
|
||
const self = trackDisposable({
|
||
dispose: (0, functional_1.createSingleCallFunction)(() => {
|
||
markAsDisposed(self);
|
||
fn();
|
||
})
|
||
});
|
||
return self;
|
||
}
|
||
/**
|
||
* Manages a collection of disposable values.
|
||
*
|
||
* This is the preferred way to manage multiple disposables. A `DisposableStore` is safer to work with than an
|
||
* `IDisposable[]` as it considers edge cases, such as registering the same value multiple times or adding an item to a
|
||
* store that has already been disposed of.
|
||
*/
|
||
class DisposableStore {
|
||
static { this.DISABLE_DISPOSED_WARNING = false; }
|
||
constructor() {
|
||
this._toDispose = new Set();
|
||
this._isDisposed = false;
|
||
trackDisposable(this);
|
||
}
|
||
/**
|
||
* Dispose of all registered disposables and mark this object as disposed.
|
||
*
|
||
* Any future disposables added to this object will be disposed of on `add`.
|
||
*/
|
||
dispose() {
|
||
if (this._isDisposed) {
|
||
return;
|
||
}
|
||
markAsDisposed(this);
|
||
this._isDisposed = true;
|
||
this.clear();
|
||
}
|
||
/**
|
||
* @return `true` if this object has been disposed of.
|
||
*/
|
||
get isDisposed() {
|
||
return this._isDisposed;
|
||
}
|
||
/**
|
||
* Dispose of all registered disposables but do not mark this object as disposed.
|
||
*/
|
||
clear() {
|
||
if (this._toDispose.size === 0) {
|
||
return;
|
||
}
|
||
try {
|
||
dispose(this._toDispose);
|
||
}
|
||
finally {
|
||
this._toDispose.clear();
|
||
}
|
||
}
|
||
/**
|
||
* Add a new {@link IDisposable disposable} to the collection.
|
||
*/
|
||
add(o) {
|
||
if (!o) {
|
||
return o;
|
||
}
|
||
if (o === this) {
|
||
throw new Error('Cannot register a disposable on itself!');
|
||
}
|
||
setParentOfDisposable(o, this);
|
||
if (this._isDisposed) {
|
||
if (!DisposableStore.DISABLE_DISPOSED_WARNING) {
|
||
console.warn(new Error('Trying to add a disposable to a DisposableStore that has already been disposed of. The added object will be leaked!').stack);
|
||
}
|
||
}
|
||
else {
|
||
this._toDispose.add(o);
|
||
}
|
||
return o;
|
||
}
|
||
/**
|
||
* Deletes the value from the store, but does not dispose it.
|
||
*/
|
||
deleteAndLeak(o) {
|
||
if (!o) {
|
||
return;
|
||
}
|
||
if (this._toDispose.has(o)) {
|
||
this._toDispose.delete(o);
|
||
setParentOfDisposable(o, null);
|
||
}
|
||
}
|
||
}
|
||
exports.DisposableStore = DisposableStore;
|
||
/**
|
||
* Abstract base class for a {@link IDisposable disposable} object.
|
||
*
|
||
* Subclasses can {@linkcode _register} disposables that will be automatically cleaned up when this object is disposed of.
|
||
*/
|
||
class Disposable {
|
||
/**
|
||
* A disposable that does nothing when it is disposed of.
|
||
*
|
||
* TODO: This should not be a static property.
|
||
*/
|
||
static { this.None = Object.freeze({ dispose() { } }); }
|
||
constructor() {
|
||
this._store = new DisposableStore();
|
||
trackDisposable(this);
|
||
setParentOfDisposable(this._store, this);
|
||
}
|
||
dispose() {
|
||
markAsDisposed(this);
|
||
this._store.dispose();
|
||
}
|
||
/**
|
||
* Adds `o` to the collection of disposables managed by this object.
|
||
*/
|
||
_register(o) {
|
||
if (o === this) {
|
||
throw new Error('Cannot register a disposable on itself!');
|
||
}
|
||
return this._store.add(o);
|
||
}
|
||
}
|
||
exports.Disposable = Disposable;
|
||
/**
|
||
* Manages the lifecycle of a disposable value that may be changed.
|
||
*
|
||
* This ensures that when the disposable value is changed, the previously held disposable is disposed of. You can
|
||
* also register a `MutableDisposable` on a `Disposable` to ensure it is automatically cleaned up.
|
||
*/
|
||
class MutableDisposable {
|
||
constructor() {
|
||
this._isDisposed = false;
|
||
trackDisposable(this);
|
||
}
|
||
get value() {
|
||
return this._isDisposed ? undefined : this._value;
|
||
}
|
||
set value(value) {
|
||
if (this._isDisposed || value === this._value) {
|
||
return;
|
||
}
|
||
this._value?.dispose();
|
||
if (value) {
|
||
setParentOfDisposable(value, this);
|
||
}
|
||
this._value = value;
|
||
}
|
||
/**
|
||
* Resets the stored value and disposed of the previously stored value.
|
||
*/
|
||
clear() {
|
||
this.value = undefined;
|
||
}
|
||
dispose() {
|
||
this._isDisposed = true;
|
||
markAsDisposed(this);
|
||
this._value?.dispose();
|
||
this._value = undefined;
|
||
}
|
||
}
|
||
exports.MutableDisposable = MutableDisposable;
|
||
class RefCountedDisposable {
|
||
constructor(_disposable) {
|
||
this._disposable = _disposable;
|
||
this._counter = 1;
|
||
}
|
||
acquire() {
|
||
this._counter++;
|
||
return this;
|
||
}
|
||
release() {
|
||
if (--this._counter === 0) {
|
||
this._disposable.dispose();
|
||
}
|
||
return this;
|
||
}
|
||
}
|
||
exports.RefCountedDisposable = RefCountedDisposable;
|
||
class ImmortalReference {
|
||
constructor(object) {
|
||
this.object = object;
|
||
}
|
||
dispose() { }
|
||
}
|
||
exports.ImmortalReference = ImmortalReference;
|
||
/**
|
||
* A map the manages the lifecycle of the values that it stores.
|
||
*/
|
||
class DisposableMap {
|
||
constructor() {
|
||
this._store = new Map();
|
||
this._isDisposed = false;
|
||
trackDisposable(this);
|
||
}
|
||
/**
|
||
* Disposes of all stored values and mark this object as disposed.
|
||
*
|
||
* Trying to use this object after it has been disposed of is an error.
|
||
*/
|
||
dispose() {
|
||
markAsDisposed(this);
|
||
this._isDisposed = true;
|
||
this.clearAndDisposeAll();
|
||
}
|
||
/**
|
||
* Disposes of all stored values and clear the map, but DO NOT mark this object as disposed.
|
||
*/
|
||
clearAndDisposeAll() {
|
||
if (!this._store.size) {
|
||
return;
|
||
}
|
||
try {
|
||
dispose(this._store.values());
|
||
}
|
||
finally {
|
||
this._store.clear();
|
||
}
|
||
}
|
||
get(key) {
|
||
return this._store.get(key);
|
||
}
|
||
set(key, value, skipDisposeOnOverwrite = false) {
|
||
if (this._isDisposed) {
|
||
console.warn(new Error('Trying to add a disposable to a DisposableMap that has already been disposed of. The added object will be leaked!').stack);
|
||
}
|
||
if (!skipDisposeOnOverwrite) {
|
||
this._store.get(key)?.dispose();
|
||
}
|
||
this._store.set(key, value);
|
||
}
|
||
/**
|
||
* Delete the value stored for `key` from this map and also dispose of it.
|
||
*/
|
||
deleteAndDispose(key) {
|
||
this._store.get(key)?.dispose();
|
||
this._store.delete(key);
|
||
}
|
||
[Symbol.iterator]() {
|
||
return this._store[Symbol.iterator]();
|
||
}
|
||
}
|
||
exports.DisposableMap = DisposableMap;
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[20/*vs/base/common/linkedList*/], __M([0/*require*/,1/*exports*/]), function (require, exports) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.LinkedList = void 0;
|
||
class Node {
|
||
static { this.Undefined = new Node(undefined); }
|
||
constructor(element) {
|
||
this.element = element;
|
||
this.next = Node.Undefined;
|
||
this.prev = Node.Undefined;
|
||
}
|
||
}
|
||
class LinkedList {
|
||
constructor() {
|
||
this._first = Node.Undefined;
|
||
this._last = Node.Undefined;
|
||
this._size = 0;
|
||
}
|
||
get size() {
|
||
return this._size;
|
||
}
|
||
isEmpty() {
|
||
return this._first === Node.Undefined;
|
||
}
|
||
clear() {
|
||
let node = this._first;
|
||
while (node !== Node.Undefined) {
|
||
const next = node.next;
|
||
node.prev = Node.Undefined;
|
||
node.next = Node.Undefined;
|
||
node = next;
|
||
}
|
||
this._first = Node.Undefined;
|
||
this._last = Node.Undefined;
|
||
this._size = 0;
|
||
}
|
||
unshift(element) {
|
||
return this._insert(element, false);
|
||
}
|
||
push(element) {
|
||
return this._insert(element, true);
|
||
}
|
||
_insert(element, atTheEnd) {
|
||
const newNode = new Node(element);
|
||
if (this._first === Node.Undefined) {
|
||
this._first = newNode;
|
||
this._last = newNode;
|
||
}
|
||
else if (atTheEnd) {
|
||
// push
|
||
const oldLast = this._last;
|
||
this._last = newNode;
|
||
newNode.prev = oldLast;
|
||
oldLast.next = newNode;
|
||
}
|
||
else {
|
||
// unshift
|
||
const oldFirst = this._first;
|
||
this._first = newNode;
|
||
newNode.next = oldFirst;
|
||
oldFirst.prev = newNode;
|
||
}
|
||
this._size += 1;
|
||
let didRemove = false;
|
||
return () => {
|
||
if (!didRemove) {
|
||
didRemove = true;
|
||
this._remove(newNode);
|
||
}
|
||
};
|
||
}
|
||
shift() {
|
||
if (this._first === Node.Undefined) {
|
||
return undefined;
|
||
}
|
||
else {
|
||
const res = this._first.element;
|
||
this._remove(this._first);
|
||
return res;
|
||
}
|
||
}
|
||
pop() {
|
||
if (this._last === Node.Undefined) {
|
||
return undefined;
|
||
}
|
||
else {
|
||
const res = this._last.element;
|
||
this._remove(this._last);
|
||
return res;
|
||
}
|
||
}
|
||
_remove(node) {
|
||
if (node.prev !== Node.Undefined && node.next !== Node.Undefined) {
|
||
// middle
|
||
const anchor = node.prev;
|
||
anchor.next = node.next;
|
||
node.next.prev = anchor;
|
||
}
|
||
else if (node.prev === Node.Undefined && node.next === Node.Undefined) {
|
||
// only node
|
||
this._first = Node.Undefined;
|
||
this._last = Node.Undefined;
|
||
}
|
||
else if (node.next === Node.Undefined) {
|
||
// last
|
||
this._last = this._last.prev;
|
||
this._last.next = Node.Undefined;
|
||
}
|
||
else if (node.prev === Node.Undefined) {
|
||
// first
|
||
this._first = this._first.next;
|
||
this._first.prev = Node.Undefined;
|
||
}
|
||
// done
|
||
this._size -= 1;
|
||
}
|
||
*[Symbol.iterator]() {
|
||
let node = this._first;
|
||
while (node !== Node.Undefined) {
|
||
yield node.element;
|
||
node = node.next;
|
||
}
|
||
}
|
||
}
|
||
exports.LinkedList = LinkedList;
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[21/*vs/base/common/map*/], __M([0/*require*/,1/*exports*/]), function (require, exports) {
|
||
"use strict";
|
||
var _a, _b;
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.SetMap = exports.BidirectionalMap = exports.LRUCache = exports.LinkedMap = exports.ResourceMap = void 0;
|
||
class ResourceMapEntry {
|
||
constructor(uri, value) {
|
||
this.uri = uri;
|
||
this.value = value;
|
||
}
|
||
}
|
||
function isEntries(arg) {
|
||
return Array.isArray(arg);
|
||
}
|
||
class ResourceMap {
|
||
static { this.defaultToKey = (resource) => resource.toString(); }
|
||
constructor(arg, toKey) {
|
||
this[_a] = 'ResourceMap';
|
||
if (arg instanceof ResourceMap) {
|
||
this.map = new Map(arg.map);
|
||
this.toKey = toKey ?? ResourceMap.defaultToKey;
|
||
}
|
||
else if (isEntries(arg)) {
|
||
this.map = new Map();
|
||
this.toKey = toKey ?? ResourceMap.defaultToKey;
|
||
for (const [resource, value] of arg) {
|
||
this.set(resource, value);
|
||
}
|
||
}
|
||
else {
|
||
this.map = new Map();
|
||
this.toKey = arg ?? ResourceMap.defaultToKey;
|
||
}
|
||
}
|
||
set(resource, value) {
|
||
this.map.set(this.toKey(resource), new ResourceMapEntry(resource, value));
|
||
return this;
|
||
}
|
||
get(resource) {
|
||
return this.map.get(this.toKey(resource))?.value;
|
||
}
|
||
has(resource) {
|
||
return this.map.has(this.toKey(resource));
|
||
}
|
||
get size() {
|
||
return this.map.size;
|
||
}
|
||
clear() {
|
||
this.map.clear();
|
||
}
|
||
delete(resource) {
|
||
return this.map.delete(this.toKey(resource));
|
||
}
|
||
forEach(clb, thisArg) {
|
||
if (typeof thisArg !== 'undefined') {
|
||
clb = clb.bind(thisArg);
|
||
}
|
||
for (const [_, entry] of this.map) {
|
||
clb(entry.value, entry.uri, this);
|
||
}
|
||
}
|
||
*values() {
|
||
for (const entry of this.map.values()) {
|
||
yield entry.value;
|
||
}
|
||
}
|
||
*keys() {
|
||
for (const entry of this.map.values()) {
|
||
yield entry.uri;
|
||
}
|
||
}
|
||
*entries() {
|
||
for (const entry of this.map.values()) {
|
||
yield [entry.uri, entry.value];
|
||
}
|
||
}
|
||
*[(_a = Symbol.toStringTag, Symbol.iterator)]() {
|
||
for (const [, entry] of this.map) {
|
||
yield [entry.uri, entry.value];
|
||
}
|
||
}
|
||
}
|
||
exports.ResourceMap = ResourceMap;
|
||
class LinkedMap {
|
||
constructor() {
|
||
this[_b] = 'LinkedMap';
|
||
this._map = new Map();
|
||
this._head = undefined;
|
||
this._tail = undefined;
|
||
this._size = 0;
|
||
this._state = 0;
|
||
}
|
||
clear() {
|
||
this._map.clear();
|
||
this._head = undefined;
|
||
this._tail = undefined;
|
||
this._size = 0;
|
||
this._state++;
|
||
}
|
||
isEmpty() {
|
||
return !this._head && !this._tail;
|
||
}
|
||
get size() {
|
||
return this._size;
|
||
}
|
||
get first() {
|
||
return this._head?.value;
|
||
}
|
||
get last() {
|
||
return this._tail?.value;
|
||
}
|
||
has(key) {
|
||
return this._map.has(key);
|
||
}
|
||
get(key, touch = 0 /* Touch.None */) {
|
||
const item = this._map.get(key);
|
||
if (!item) {
|
||
return undefined;
|
||
}
|
||
if (touch !== 0 /* Touch.None */) {
|
||
this.touch(item, touch);
|
||
}
|
||
return item.value;
|
||
}
|
||
set(key, value, touch = 0 /* Touch.None */) {
|
||
let item = this._map.get(key);
|
||
if (item) {
|
||
item.value = value;
|
||
if (touch !== 0 /* Touch.None */) {
|
||
this.touch(item, touch);
|
||
}
|
||
}
|
||
else {
|
||
item = { key, value, next: undefined, previous: undefined };
|
||
switch (touch) {
|
||
case 0 /* Touch.None */:
|
||
this.addItemLast(item);
|
||
break;
|
||
case 1 /* Touch.AsOld */:
|
||
this.addItemFirst(item);
|
||
break;
|
||
case 2 /* Touch.AsNew */:
|
||
this.addItemLast(item);
|
||
break;
|
||
default:
|
||
this.addItemLast(item);
|
||
break;
|
||
}
|
||
this._map.set(key, item);
|
||
this._size++;
|
||
}
|
||
return this;
|
||
}
|
||
delete(key) {
|
||
return !!this.remove(key);
|
||
}
|
||
remove(key) {
|
||
const item = this._map.get(key);
|
||
if (!item) {
|
||
return undefined;
|
||
}
|
||
this._map.delete(key);
|
||
this.removeItem(item);
|
||
this._size--;
|
||
return item.value;
|
||
}
|
||
shift() {
|
||
if (!this._head && !this._tail) {
|
||
return undefined;
|
||
}
|
||
if (!this._head || !this._tail) {
|
||
throw new Error('Invalid list');
|
||
}
|
||
const item = this._head;
|
||
this._map.delete(item.key);
|
||
this.removeItem(item);
|
||
this._size--;
|
||
return item.value;
|
||
}
|
||
forEach(callbackfn, thisArg) {
|
||
const state = this._state;
|
||
let current = this._head;
|
||
while (current) {
|
||
if (thisArg) {
|
||
callbackfn.bind(thisArg)(current.value, current.key, this);
|
||
}
|
||
else {
|
||
callbackfn(current.value, current.key, this);
|
||
}
|
||
if (this._state !== state) {
|
||
throw new Error(`LinkedMap got modified during iteration.`);
|
||
}
|
||
current = current.next;
|
||
}
|
||
}
|
||
keys() {
|
||
const map = this;
|
||
const state = this._state;
|
||
let current = this._head;
|
||
const iterator = {
|
||
[Symbol.iterator]() {
|
||
return iterator;
|
||
},
|
||
next() {
|
||
if (map._state !== state) {
|
||
throw new Error(`LinkedMap got modified during iteration.`);
|
||
}
|
||
if (current) {
|
||
const result = { value: current.key, done: false };
|
||
current = current.next;
|
||
return result;
|
||
}
|
||
else {
|
||
return { value: undefined, done: true };
|
||
}
|
||
}
|
||
};
|
||
return iterator;
|
||
}
|
||
values() {
|
||
const map = this;
|
||
const state = this._state;
|
||
let current = this._head;
|
||
const iterator = {
|
||
[Symbol.iterator]() {
|
||
return iterator;
|
||
},
|
||
next() {
|
||
if (map._state !== state) {
|
||
throw new Error(`LinkedMap got modified during iteration.`);
|
||
}
|
||
if (current) {
|
||
const result = { value: current.value, done: false };
|
||
current = current.next;
|
||
return result;
|
||
}
|
||
else {
|
||
return { value: undefined, done: true };
|
||
}
|
||
}
|
||
};
|
||
return iterator;
|
||
}
|
||
entries() {
|
||
const map = this;
|
||
const state = this._state;
|
||
let current = this._head;
|
||
const iterator = {
|
||
[Symbol.iterator]() {
|
||
return iterator;
|
||
},
|
||
next() {
|
||
if (map._state !== state) {
|
||
throw new Error(`LinkedMap got modified during iteration.`);
|
||
}
|
||
if (current) {
|
||
const result = { value: [current.key, current.value], done: false };
|
||
current = current.next;
|
||
return result;
|
||
}
|
||
else {
|
||
return { value: undefined, done: true };
|
||
}
|
||
}
|
||
};
|
||
return iterator;
|
||
}
|
||
[(_b = Symbol.toStringTag, Symbol.iterator)]() {
|
||
return this.entries();
|
||
}
|
||
trimOld(newSize) {
|
||
if (newSize >= this.size) {
|
||
return;
|
||
}
|
||
if (newSize === 0) {
|
||
this.clear();
|
||
return;
|
||
}
|
||
let current = this._head;
|
||
let currentSize = this.size;
|
||
while (current && currentSize > newSize) {
|
||
this._map.delete(current.key);
|
||
current = current.next;
|
||
currentSize--;
|
||
}
|
||
this._head = current;
|
||
this._size = currentSize;
|
||
if (current) {
|
||
current.previous = undefined;
|
||
}
|
||
this._state++;
|
||
}
|
||
trimNew(newSize) {
|
||
if (newSize >= this.size) {
|
||
return;
|
||
}
|
||
if (newSize === 0) {
|
||
this.clear();
|
||
return;
|
||
}
|
||
let current = this._tail;
|
||
let currentSize = this.size;
|
||
while (current && currentSize > newSize) {
|
||
this._map.delete(current.key);
|
||
current = current.previous;
|
||
currentSize--;
|
||
}
|
||
this._tail = current;
|
||
this._size = currentSize;
|
||
if (current) {
|
||
current.next = undefined;
|
||
}
|
||
this._state++;
|
||
}
|
||
addItemFirst(item) {
|
||
// First time Insert
|
||
if (!this._head && !this._tail) {
|
||
this._tail = item;
|
||
}
|
||
else if (!this._head) {
|
||
throw new Error('Invalid list');
|
||
}
|
||
else {
|
||
item.next = this._head;
|
||
this._head.previous = item;
|
||
}
|
||
this._head = item;
|
||
this._state++;
|
||
}
|
||
addItemLast(item) {
|
||
// First time Insert
|
||
if (!this._head && !this._tail) {
|
||
this._head = item;
|
||
}
|
||
else if (!this._tail) {
|
||
throw new Error('Invalid list');
|
||
}
|
||
else {
|
||
item.previous = this._tail;
|
||
this._tail.next = item;
|
||
}
|
||
this._tail = item;
|
||
this._state++;
|
||
}
|
||
removeItem(item) {
|
||
if (item === this._head && item === this._tail) {
|
||
this._head = undefined;
|
||
this._tail = undefined;
|
||
}
|
||
else if (item === this._head) {
|
||
// This can only happen if size === 1 which is handled
|
||
// by the case above.
|
||
if (!item.next) {
|
||
throw new Error('Invalid list');
|
||
}
|
||
item.next.previous = undefined;
|
||
this._head = item.next;
|
||
}
|
||
else if (item === this._tail) {
|
||
// This can only happen if size === 1 which is handled
|
||
// by the case above.
|
||
if (!item.previous) {
|
||
throw new Error('Invalid list');
|
||
}
|
||
item.previous.next = undefined;
|
||
this._tail = item.previous;
|
||
}
|
||
else {
|
||
const next = item.next;
|
||
const previous = item.previous;
|
||
if (!next || !previous) {
|
||
throw new Error('Invalid list');
|
||
}
|
||
next.previous = previous;
|
||
previous.next = next;
|
||
}
|
||
item.next = undefined;
|
||
item.previous = undefined;
|
||
this._state++;
|
||
}
|
||
touch(item, touch) {
|
||
if (!this._head || !this._tail) {
|
||
throw new Error('Invalid list');
|
||
}
|
||
if ((touch !== 1 /* Touch.AsOld */ && touch !== 2 /* Touch.AsNew */)) {
|
||
return;
|
||
}
|
||
if (touch === 1 /* Touch.AsOld */) {
|
||
if (item === this._head) {
|
||
return;
|
||
}
|
||
const next = item.next;
|
||
const previous = item.previous;
|
||
// Unlink the item
|
||
if (item === this._tail) {
|
||
// previous must be defined since item was not head but is tail
|
||
// So there are more than on item in the map
|
||
previous.next = undefined;
|
||
this._tail = previous;
|
||
}
|
||
else {
|
||
// Both next and previous are not undefined since item was neither head nor tail.
|
||
next.previous = previous;
|
||
previous.next = next;
|
||
}
|
||
// Insert the node at head
|
||
item.previous = undefined;
|
||
item.next = this._head;
|
||
this._head.previous = item;
|
||
this._head = item;
|
||
this._state++;
|
||
}
|
||
else if (touch === 2 /* Touch.AsNew */) {
|
||
if (item === this._tail) {
|
||
return;
|
||
}
|
||
const next = item.next;
|
||
const previous = item.previous;
|
||
// Unlink the item.
|
||
if (item === this._head) {
|
||
// next must be defined since item was not tail but is head
|
||
// So there are more than on item in the map
|
||
next.previous = undefined;
|
||
this._head = next;
|
||
}
|
||
else {
|
||
// Both next and previous are not undefined since item was neither head nor tail.
|
||
next.previous = previous;
|
||
previous.next = next;
|
||
}
|
||
item.next = undefined;
|
||
item.previous = this._tail;
|
||
this._tail.next = item;
|
||
this._tail = item;
|
||
this._state++;
|
||
}
|
||
}
|
||
toJSON() {
|
||
const data = [];
|
||
this.forEach((value, key) => {
|
||
data.push([key, value]);
|
||
});
|
||
return data;
|
||
}
|
||
fromJSON(data) {
|
||
this.clear();
|
||
for (const [key, value] of data) {
|
||
this.set(key, value);
|
||
}
|
||
}
|
||
}
|
||
exports.LinkedMap = LinkedMap;
|
||
class Cache extends LinkedMap {
|
||
constructor(limit, ratio = 1) {
|
||
super();
|
||
this._limit = limit;
|
||
this._ratio = Math.min(Math.max(0, ratio), 1);
|
||
}
|
||
get limit() {
|
||
return this._limit;
|
||
}
|
||
set limit(limit) {
|
||
this._limit = limit;
|
||
this.checkTrim();
|
||
}
|
||
get(key, touch = 2 /* Touch.AsNew */) {
|
||
return super.get(key, touch);
|
||
}
|
||
peek(key) {
|
||
return super.get(key, 0 /* Touch.None */);
|
||
}
|
||
set(key, value) {
|
||
super.set(key, value, 2 /* Touch.AsNew */);
|
||
return this;
|
||
}
|
||
checkTrim() {
|
||
if (this.size > this._limit) {
|
||
this.trim(Math.round(this._limit * this._ratio));
|
||
}
|
||
}
|
||
}
|
||
class LRUCache extends Cache {
|
||
constructor(limit, ratio = 1) {
|
||
super(limit, ratio);
|
||
}
|
||
trim(newSize) {
|
||
this.trimOld(newSize);
|
||
}
|
||
set(key, value) {
|
||
super.set(key, value);
|
||
this.checkTrim();
|
||
return this;
|
||
}
|
||
}
|
||
exports.LRUCache = LRUCache;
|
||
/**
|
||
* A map that allows access both by keys and values.
|
||
* **NOTE**: values need to be unique.
|
||
*/
|
||
class BidirectionalMap {
|
||
constructor(entries) {
|
||
this._m1 = new Map();
|
||
this._m2 = new Map();
|
||
if (entries) {
|
||
for (const [key, value] of entries) {
|
||
this.set(key, value);
|
||
}
|
||
}
|
||
}
|
||
clear() {
|
||
this._m1.clear();
|
||
this._m2.clear();
|
||
}
|
||
set(key, value) {
|
||
this._m1.set(key, value);
|
||
this._m2.set(value, key);
|
||
}
|
||
get(key) {
|
||
return this._m1.get(key);
|
||
}
|
||
getKey(value) {
|
||
return this._m2.get(value);
|
||
}
|
||
delete(key) {
|
||
const value = this._m1.get(key);
|
||
if (value === undefined) {
|
||
return false;
|
||
}
|
||
this._m1.delete(key);
|
||
this._m2.delete(value);
|
||
return true;
|
||
}
|
||
keys() {
|
||
return this._m1.keys();
|
||
}
|
||
values() {
|
||
return this._m1.values();
|
||
}
|
||
}
|
||
exports.BidirectionalMap = BidirectionalMap;
|
||
class SetMap {
|
||
constructor() {
|
||
this.map = new Map();
|
||
}
|
||
add(key, value) {
|
||
let values = this.map.get(key);
|
||
if (!values) {
|
||
values = new Set();
|
||
this.map.set(key, values);
|
||
}
|
||
values.add(value);
|
||
}
|
||
delete(key, value) {
|
||
const values = this.map.get(key);
|
||
if (!values) {
|
||
return;
|
||
}
|
||
values.delete(value);
|
||
if (values.size === 0) {
|
||
this.map.delete(key);
|
||
}
|
||
}
|
||
forEach(key, fn) {
|
||
const values = this.map.get(key);
|
||
if (!values) {
|
||
return;
|
||
}
|
||
values.forEach(fn);
|
||
}
|
||
get(key) {
|
||
const values = this.map.get(key);
|
||
if (!values) {
|
||
return new Set();
|
||
}
|
||
return values;
|
||
}
|
||
}
|
||
exports.SetMap = SetMap;
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[22/*vs/base/common/stopwatch*/], __M([0/*require*/,1/*exports*/]), function (require, exports) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.StopWatch = void 0;
|
||
const hasPerformanceNow = (globalThis.performance && typeof globalThis.performance.now === 'function');
|
||
class StopWatch {
|
||
static create(highResolution) {
|
||
return new StopWatch(highResolution);
|
||
}
|
||
constructor(highResolution) {
|
||
this._now = hasPerformanceNow && highResolution === false ? Date.now : globalThis.performance.now.bind(globalThis.performance);
|
||
this._startTime = this._now();
|
||
this._stopTime = -1;
|
||
}
|
||
stop() {
|
||
this._stopTime = this._now();
|
||
}
|
||
reset() {
|
||
this._startTime = this._now();
|
||
this._stopTime = -1;
|
||
}
|
||
elapsed() {
|
||
if (this._stopTime !== -1) {
|
||
return this._stopTime - this._startTime;
|
||
}
|
||
return this._now() - this._startTime;
|
||
}
|
||
}
|
||
exports.StopWatch = StopWatch;
|
||
});
|
||
|
||
define(__m[9/*vs/base/common/event*/], __M([0/*require*/,1/*exports*/,3/*vs/base/common/errors*/,18/*vs/base/common/functional*/,8/*vs/base/common/lifecycle*/,20/*vs/base/common/linkedList*/,22/*vs/base/common/stopwatch*/]), function (require, exports, errors_1, functional_1, lifecycle_1, linkedList_1, stopwatch_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.Relay = exports.EventBufferer = exports.EventMultiplexer = exports.MicrotaskEmitter = exports.DebounceEmitter = exports.PauseableEmitter = exports.createEventDeliveryQueue = exports.Emitter = exports.ListenerRefusalError = exports.ListenerLeakError = exports.EventProfiling = exports.Event = void 0;
|
||
// -----------------------------------------------------------------------------------------------------------------------
|
||
// Uncomment the next line to print warnings whenever a listener is GC'ed without having been disposed. This is a LEAK.
|
||
// -----------------------------------------------------------------------------------------------------------------------
|
||
const _enableListenerGCedWarning = false;
|
||
// -----------------------------------------------------------------------------------------------------------------------
|
||
// Uncomment the next line to print warnings whenever an emitter with listeners is disposed. That is a sign of code smell.
|
||
// -----------------------------------------------------------------------------------------------------------------------
|
||
const _enableDisposeWithListenerWarning = false;
|
||
// -----------------------------------------------------------------------------------------------------------------------
|
||
// Uncomment the next line to print warnings whenever a snapshotted event is used repeatedly without cleanup.
|
||
// See https://github.com/microsoft/vscode/issues/142851
|
||
// -----------------------------------------------------------------------------------------------------------------------
|
||
const _enableSnapshotPotentialLeakWarning = false;
|
||
var Event;
|
||
(function (Event) {
|
||
Event.None = () => lifecycle_1.Disposable.None;
|
||
function _addLeakageTraceLogic(options) {
|
||
if (_enableSnapshotPotentialLeakWarning) {
|
||
const { onDidAddListener: origListenerDidAdd } = options;
|
||
const stack = Stacktrace.create();
|
||
let count = 0;
|
||
options.onDidAddListener = () => {
|
||
if (++count === 2) {
|
||
console.warn('snapshotted emitter LIKELY used public and SHOULD HAVE BEEN created with DisposableStore. snapshotted here');
|
||
stack.print();
|
||
}
|
||
origListenerDidAdd?.();
|
||
};
|
||
}
|
||
}
|
||
/**
|
||
* Given an event, returns another event which debounces calls and defers the listeners to a later task via a shared
|
||
* `setTimeout`. The event is converted into a signal (`Event<void>`) to avoid additional object creation as a
|
||
* result of merging events and to try prevent race conditions that could arise when using related deferred and
|
||
* non-deferred events.
|
||
*
|
||
* This is useful for deferring non-critical work (eg. general UI updates) to ensure it does not block critical work
|
||
* (eg. latency of keypress to text rendered).
|
||
*
|
||
* *NOTE* that this function returns an `Event` and it MUST be called with a `DisposableStore` whenever the returned
|
||
* event is accessible to "third parties", e.g the event is a public property. Otherwise a leaked listener on the
|
||
* returned event causes this utility to leak a listener on the original event.
|
||
*
|
||
* @param event The event source for the new event.
|
||
* @param disposable A disposable store to add the new EventEmitter to.
|
||
*/
|
||
function defer(event, disposable) {
|
||
return debounce(event, () => void 0, 0, undefined, true, undefined, disposable);
|
||
}
|
||
Event.defer = defer;
|
||
/**
|
||
* Given an event, returns another event which only fires once.
|
||
*
|
||
* @param event The event source for the new event.
|
||
*/
|
||
function once(event) {
|
||
return (listener, thisArgs = null, disposables) => {
|
||
// we need this, in case the event fires during the listener call
|
||
let didFire = false;
|
||
let result = undefined;
|
||
result = event(e => {
|
||
if (didFire) {
|
||
return;
|
||
}
|
||
else if (result) {
|
||
result.dispose();
|
||
}
|
||
else {
|
||
didFire = true;
|
||
}
|
||
return listener.call(thisArgs, e);
|
||
}, null, disposables);
|
||
if (didFire) {
|
||
result.dispose();
|
||
}
|
||
return result;
|
||
};
|
||
}
|
||
Event.once = once;
|
||
/**
|
||
* Given an event, returns another event which only fires once, and only when the condition is met.
|
||
*
|
||
* @param event The event source for the new event.
|
||
*/
|
||
function onceIf(event, condition) {
|
||
return Event.once(Event.filter(event, condition));
|
||
}
|
||
Event.onceIf = onceIf;
|
||
/**
|
||
* Maps an event of one type into an event of another type using a mapping function, similar to how
|
||
* `Array.prototype.map` works.
|
||
*
|
||
* *NOTE* that this function returns an `Event` and it MUST be called with a `DisposableStore` whenever the returned
|
||
* event is accessible to "third parties", e.g the event is a public property. Otherwise a leaked listener on the
|
||
* returned event causes this utility to leak a listener on the original event.
|
||
*
|
||
* @param event The event source for the new event.
|
||
* @param map The mapping function.
|
||
* @param disposable A disposable store to add the new EventEmitter to.
|
||
*/
|
||
function map(event, map, disposable) {
|
||
return snapshot((listener, thisArgs = null, disposables) => event(i => listener.call(thisArgs, map(i)), null, disposables), disposable);
|
||
}
|
||
Event.map = map;
|
||
/**
|
||
* Wraps an event in another event that performs some function on the event object before firing.
|
||
*
|
||
* *NOTE* that this function returns an `Event` and it MUST be called with a `DisposableStore` whenever the returned
|
||
* event is accessible to "third parties", e.g the event is a public property. Otherwise a leaked listener on the
|
||
* returned event causes this utility to leak a listener on the original event.
|
||
*
|
||
* @param event The event source for the new event.
|
||
* @param each The function to perform on the event object.
|
||
* @param disposable A disposable store to add the new EventEmitter to.
|
||
*/
|
||
function forEach(event, each, disposable) {
|
||
return snapshot((listener, thisArgs = null, disposables) => event(i => { each(i); listener.call(thisArgs, i); }, null, disposables), disposable);
|
||
}
|
||
Event.forEach = forEach;
|
||
function filter(event, filter, disposable) {
|
||
return snapshot((listener, thisArgs = null, disposables) => event(e => filter(e) && listener.call(thisArgs, e), null, disposables), disposable);
|
||
}
|
||
Event.filter = filter;
|
||
/**
|
||
* Given an event, returns the same event but typed as `Event<void>`.
|
||
*/
|
||
function signal(event) {
|
||
return event;
|
||
}
|
||
Event.signal = signal;
|
||
function any(...events) {
|
||
return (listener, thisArgs = null, disposables) => {
|
||
const disposable = (0, lifecycle_1.combinedDisposable)(...events.map(event => event(e => listener.call(thisArgs, e))));
|
||
return addAndReturnDisposable(disposable, disposables);
|
||
};
|
||
}
|
||
Event.any = any;
|
||
/**
|
||
* *NOTE* that this function returns an `Event` and it MUST be called with a `DisposableStore` whenever the returned
|
||
* event is accessible to "third parties", e.g the event is a public property. Otherwise a leaked listener on the
|
||
* returned event causes this utility to leak a listener on the original event.
|
||
*/
|
||
function reduce(event, merge, initial, disposable) {
|
||
let output = initial;
|
||
return map(event, e => {
|
||
output = merge(output, e);
|
||
return output;
|
||
}, disposable);
|
||
}
|
||
Event.reduce = reduce;
|
||
function snapshot(event, disposable) {
|
||
let listener;
|
||
const options = {
|
||
onWillAddFirstListener() {
|
||
listener = event(emitter.fire, emitter);
|
||
},
|
||
onDidRemoveLastListener() {
|
||
listener?.dispose();
|
||
}
|
||
};
|
||
if (!disposable) {
|
||
_addLeakageTraceLogic(options);
|
||
}
|
||
const emitter = new Emitter(options);
|
||
disposable?.add(emitter);
|
||
return emitter.event;
|
||
}
|
||
/**
|
||
* Adds the IDisposable to the store if it's set, and returns it. Useful to
|
||
* Event function implementation.
|
||
*/
|
||
function addAndReturnDisposable(d, store) {
|
||
if (store instanceof Array) {
|
||
store.push(d);
|
||
}
|
||
else if (store) {
|
||
store.add(d);
|
||
}
|
||
return d;
|
||
}
|
||
function debounce(event, merge, delay = 100, leading = false, flushOnListenerRemove = false, leakWarningThreshold, disposable) {
|
||
let subscription;
|
||
let output = undefined;
|
||
let handle = undefined;
|
||
let numDebouncedCalls = 0;
|
||
let doFire;
|
||
const options = {
|
||
leakWarningThreshold,
|
||
onWillAddFirstListener() {
|
||
subscription = event(cur => {
|
||
numDebouncedCalls++;
|
||
output = merge(output, cur);
|
||
if (leading && !handle) {
|
||
emitter.fire(output);
|
||
output = undefined;
|
||
}
|
||
doFire = () => {
|
||
const _output = output;
|
||
output = undefined;
|
||
handle = undefined;
|
||
if (!leading || numDebouncedCalls > 1) {
|
||
emitter.fire(_output);
|
||
}
|
||
numDebouncedCalls = 0;
|
||
};
|
||
if (typeof delay === 'number') {
|
||
clearTimeout(handle);
|
||
handle = setTimeout(doFire, delay);
|
||
}
|
||
else {
|
||
if (handle === undefined) {
|
||
handle = 0;
|
||
queueMicrotask(doFire);
|
||
}
|
||
}
|
||
});
|
||
},
|
||
onWillRemoveListener() {
|
||
if (flushOnListenerRemove && numDebouncedCalls > 0) {
|
||
doFire?.();
|
||
}
|
||
},
|
||
onDidRemoveLastListener() {
|
||
doFire = undefined;
|
||
subscription.dispose();
|
||
}
|
||
};
|
||
if (!disposable) {
|
||
_addLeakageTraceLogic(options);
|
||
}
|
||
const emitter = new Emitter(options);
|
||
disposable?.add(emitter);
|
||
return emitter.event;
|
||
}
|
||
Event.debounce = debounce;
|
||
/**
|
||
* Debounces an event, firing after some delay (default=0) with an array of all event original objects.
|
||
*
|
||
* *NOTE* that this function returns an `Event` and it MUST be called with a `DisposableStore` whenever the returned
|
||
* event is accessible to "third parties", e.g the event is a public property. Otherwise a leaked listener on the
|
||
* returned event causes this utility to leak a listener on the original event.
|
||
*/
|
||
function accumulate(event, delay = 0, disposable) {
|
||
return Event.debounce(event, (last, e) => {
|
||
if (!last) {
|
||
return [e];
|
||
}
|
||
last.push(e);
|
||
return last;
|
||
}, delay, undefined, true, undefined, disposable);
|
||
}
|
||
Event.accumulate = accumulate;
|
||
/**
|
||
* Filters an event such that some condition is _not_ met more than once in a row, effectively ensuring duplicate
|
||
* event objects from different sources do not fire the same event object.
|
||
*
|
||
* *NOTE* that this function returns an `Event` and it MUST be called with a `DisposableStore` whenever the returned
|
||
* event is accessible to "third parties", e.g the event is a public property. Otherwise a leaked listener on the
|
||
* returned event causes this utility to leak a listener on the original event.
|
||
*
|
||
* @param event The event source for the new event.
|
||
* @param equals The equality condition.
|
||
* @param disposable A disposable store to add the new EventEmitter to.
|
||
*
|
||
* @example
|
||
* ```
|
||
* // Fire only one time when a single window is opened or focused
|
||
* Event.latch(Event.any(onDidOpenWindow, onDidFocusWindow))
|
||
* ```
|
||
*/
|
||
function latch(event, equals = (a, b) => a === b, disposable) {
|
||
let firstCall = true;
|
||
let cache;
|
||
return filter(event, value => {
|
||
const shouldEmit = firstCall || !equals(value, cache);
|
||
firstCall = false;
|
||
cache = value;
|
||
return shouldEmit;
|
||
}, disposable);
|
||
}
|
||
Event.latch = latch;
|
||
/**
|
||
* Splits an event whose parameter is a union type into 2 separate events for each type in the union.
|
||
*
|
||
* *NOTE* that this function returns an `Event` and it MUST be called with a `DisposableStore` whenever the returned
|
||
* event is accessible to "third parties", e.g the event is a public property. Otherwise a leaked listener on the
|
||
* returned event causes this utility to leak a listener on the original event.
|
||
*
|
||
* @example
|
||
* ```
|
||
* const event = new EventEmitter<number | undefined>().event;
|
||
* const [numberEvent, undefinedEvent] = Event.split(event, isUndefined);
|
||
* ```
|
||
*
|
||
* @param event The event source for the new event.
|
||
* @param isT A function that determines what event is of the first type.
|
||
* @param disposable A disposable store to add the new EventEmitter to.
|
||
*/
|
||
function split(event, isT, disposable) {
|
||
return [
|
||
Event.filter(event, isT, disposable),
|
||
Event.filter(event, e => !isT(e), disposable),
|
||
];
|
||
}
|
||
Event.split = split;
|
||
/**
|
||
* Buffers an event until it has a listener attached.
|
||
*
|
||
* *NOTE* that this function returns an `Event` and it MUST be called with a `DisposableStore` whenever the returned
|
||
* event is accessible to "third parties", e.g the event is a public property. Otherwise a leaked listener on the
|
||
* returned event causes this utility to leak a listener on the original event.
|
||
*
|
||
* @param event The event source for the new event.
|
||
* @param flushAfterTimeout Determines whether to flush the buffer after a timeout immediately or after a
|
||
* `setTimeout` when the first event listener is added.
|
||
* @param _buffer Internal: A source event array used for tests.
|
||
*
|
||
* @example
|
||
* ```
|
||
* // Start accumulating events, when the first listener is attached, flush
|
||
* // the event after a timeout such that multiple listeners attached before
|
||
* // the timeout would receive the event
|
||
* this.onInstallExtension = Event.buffer(service.onInstallExtension, true);
|
||
* ```
|
||
*/
|
||
function buffer(event, flushAfterTimeout = false, _buffer = [], disposable) {
|
||
let buffer = _buffer.slice();
|
||
let listener = event(e => {
|
||
if (buffer) {
|
||
buffer.push(e);
|
||
}
|
||
else {
|
||
emitter.fire(e);
|
||
}
|
||
});
|
||
if (disposable) {
|
||
disposable.add(listener);
|
||
}
|
||
const flush = () => {
|
||
buffer?.forEach(e => emitter.fire(e));
|
||
buffer = null;
|
||
};
|
||
const emitter = new Emitter({
|
||
onWillAddFirstListener() {
|
||
if (!listener) {
|
||
listener = event(e => emitter.fire(e));
|
||
if (disposable) {
|
||
disposable.add(listener);
|
||
}
|
||
}
|
||
},
|
||
onDidAddFirstListener() {
|
||
if (buffer) {
|
||
if (flushAfterTimeout) {
|
||
setTimeout(flush);
|
||
}
|
||
else {
|
||
flush();
|
||
}
|
||
}
|
||
},
|
||
onDidRemoveLastListener() {
|
||
if (listener) {
|
||
listener.dispose();
|
||
}
|
||
listener = null;
|
||
}
|
||
});
|
||
if (disposable) {
|
||
disposable.add(emitter);
|
||
}
|
||
return emitter.event;
|
||
}
|
||
Event.buffer = buffer;
|
||
/**
|
||
* Wraps the event in an {@link IChainableEvent}, allowing a more functional programming style.
|
||
*
|
||
* @example
|
||
* ```
|
||
* // Normal
|
||
* const onEnterPressNormal = Event.filter(
|
||
* Event.map(onKeyPress.event, e => new StandardKeyboardEvent(e)),
|
||
* e.keyCode === KeyCode.Enter
|
||
* ).event;
|
||
*
|
||
* // Using chain
|
||
* const onEnterPressChain = Event.chain(onKeyPress.event, $ => $
|
||
* .map(e => new StandardKeyboardEvent(e))
|
||
* .filter(e => e.keyCode === KeyCode.Enter)
|
||
* );
|
||
* ```
|
||
*/
|
||
function chain(event, sythensize) {
|
||
const fn = (listener, thisArgs, disposables) => {
|
||
const cs = sythensize(new ChainableSynthesis());
|
||
return event(function (value) {
|
||
const result = cs.evaluate(value);
|
||
if (result !== HaltChainable) {
|
||
listener.call(thisArgs, result);
|
||
}
|
||
}, undefined, disposables);
|
||
};
|
||
return fn;
|
||
}
|
||
Event.chain = chain;
|
||
const HaltChainable = Symbol('HaltChainable');
|
||
class ChainableSynthesis {
|
||
constructor() {
|
||
this.steps = [];
|
||
}
|
||
map(fn) {
|
||
this.steps.push(fn);
|
||
return this;
|
||
}
|
||
forEach(fn) {
|
||
this.steps.push(v => {
|
||
fn(v);
|
||
return v;
|
||
});
|
||
return this;
|
||
}
|
||
filter(fn) {
|
||
this.steps.push(v => fn(v) ? v : HaltChainable);
|
||
return this;
|
||
}
|
||
reduce(merge, initial) {
|
||
let last = initial;
|
||
this.steps.push(v => {
|
||
last = merge(last, v);
|
||
return last;
|
||
});
|
||
return this;
|
||
}
|
||
latch(equals = (a, b) => a === b) {
|
||
let firstCall = true;
|
||
let cache;
|
||
this.steps.push(value => {
|
||
const shouldEmit = firstCall || !equals(value, cache);
|
||
firstCall = false;
|
||
cache = value;
|
||
return shouldEmit ? value : HaltChainable;
|
||
});
|
||
return this;
|
||
}
|
||
evaluate(value) {
|
||
for (const step of this.steps) {
|
||
value = step(value);
|
||
if (value === HaltChainable) {
|
||
break;
|
||
}
|
||
}
|
||
return value;
|
||
}
|
||
}
|
||
/**
|
||
* Creates an {@link Event} from a node event emitter.
|
||
*/
|
||
function fromNodeEventEmitter(emitter, eventName, map = id => id) {
|
||
const fn = (...args) => result.fire(map(...args));
|
||
const onFirstListenerAdd = () => emitter.on(eventName, fn);
|
||
const onLastListenerRemove = () => emitter.removeListener(eventName, fn);
|
||
const result = new Emitter({ onWillAddFirstListener: onFirstListenerAdd, onDidRemoveLastListener: onLastListenerRemove });
|
||
return result.event;
|
||
}
|
||
Event.fromNodeEventEmitter = fromNodeEventEmitter;
|
||
/**
|
||
* Creates an {@link Event} from a DOM event emitter.
|
||
*/
|
||
function fromDOMEventEmitter(emitter, eventName, map = id => id) {
|
||
const fn = (...args) => result.fire(map(...args));
|
||
const onFirstListenerAdd = () => emitter.addEventListener(eventName, fn);
|
||
const onLastListenerRemove = () => emitter.removeEventListener(eventName, fn);
|
||
const result = new Emitter({ onWillAddFirstListener: onFirstListenerAdd, onDidRemoveLastListener: onLastListenerRemove });
|
||
return result.event;
|
||
}
|
||
Event.fromDOMEventEmitter = fromDOMEventEmitter;
|
||
/**
|
||
* Creates a promise out of an event, using the {@link Event.once} helper.
|
||
*/
|
||
function toPromise(event) {
|
||
return new Promise(resolve => once(event)(resolve));
|
||
}
|
||
Event.toPromise = toPromise;
|
||
/**
|
||
* Creates an event out of a promise that fires once when the promise is
|
||
* resolved with the result of the promise or `undefined`.
|
||
*/
|
||
function fromPromise(promise) {
|
||
const result = new Emitter();
|
||
promise.then(res => {
|
||
result.fire(res);
|
||
}, () => {
|
||
result.fire(undefined);
|
||
}).finally(() => {
|
||
result.dispose();
|
||
});
|
||
return result.event;
|
||
}
|
||
Event.fromPromise = fromPromise;
|
||
/**
|
||
* A convenience function for forwarding an event to another emitter which
|
||
* improves readability.
|
||
*
|
||
* This is similar to {@link Relay} but allows instantiating and forwarding
|
||
* on a single line and also allows for multiple source events.
|
||
* @param from The event to forward.
|
||
* @param to The emitter to forward the event to.
|
||
* @example
|
||
* Event.forward(event, emitter);
|
||
* // equivalent to
|
||
* event(e => emitter.fire(e));
|
||
* // equivalent to
|
||
* event(emitter.fire, emitter);
|
||
*/
|
||
function forward(from, to) {
|
||
return from(e => to.fire(e));
|
||
}
|
||
Event.forward = forward;
|
||
function runAndSubscribe(event, handler, initial) {
|
||
handler(initial);
|
||
return event(e => handler(e));
|
||
}
|
||
Event.runAndSubscribe = runAndSubscribe;
|
||
class EmitterObserver {
|
||
constructor(_observable, store) {
|
||
this._observable = _observable;
|
||
this._counter = 0;
|
||
this._hasChanged = false;
|
||
const options = {
|
||
onWillAddFirstListener: () => {
|
||
_observable.addObserver(this);
|
||
// Communicate to the observable that we received its current value and would like to be notified about future changes.
|
||
this._observable.reportChanges();
|
||
},
|
||
onDidRemoveLastListener: () => {
|
||
_observable.removeObserver(this);
|
||
}
|
||
};
|
||
if (!store) {
|
||
_addLeakageTraceLogic(options);
|
||
}
|
||
this.emitter = new Emitter(options);
|
||
if (store) {
|
||
store.add(this.emitter);
|
||
}
|
||
}
|
||
beginUpdate(_observable) {
|
||
// assert(_observable === this.obs);
|
||
this._counter++;
|
||
}
|
||
handlePossibleChange(_observable) {
|
||
// assert(_observable === this.obs);
|
||
}
|
||
handleChange(_observable, _change) {
|
||
// assert(_observable === this.obs);
|
||
this._hasChanged = true;
|
||
}
|
||
endUpdate(_observable) {
|
||
// assert(_observable === this.obs);
|
||
this._counter--;
|
||
if (this._counter === 0) {
|
||
this._observable.reportChanges();
|
||
if (this._hasChanged) {
|
||
this._hasChanged = false;
|
||
this.emitter.fire(this._observable.get());
|
||
}
|
||
}
|
||
}
|
||
}
|
||
/**
|
||
* Creates an event emitter that is fired when the observable changes.
|
||
* Each listeners subscribes to the emitter.
|
||
*/
|
||
function fromObservable(obs, store) {
|
||
const observer = new EmitterObserver(obs, store);
|
||
return observer.emitter.event;
|
||
}
|
||
Event.fromObservable = fromObservable;
|
||
/**
|
||
* Each listener is attached to the observable directly.
|
||
*/
|
||
function fromObservableLight(observable) {
|
||
return (listener, thisArgs, disposables) => {
|
||
let count = 0;
|
||
let didChange = false;
|
||
const observer = {
|
||
beginUpdate() {
|
||
count++;
|
||
},
|
||
endUpdate() {
|
||
count--;
|
||
if (count === 0) {
|
||
observable.reportChanges();
|
||
if (didChange) {
|
||
didChange = false;
|
||
listener.call(thisArgs);
|
||
}
|
||
}
|
||
},
|
||
handlePossibleChange() {
|
||
// noop
|
||
},
|
||
handleChange() {
|
||
didChange = true;
|
||
}
|
||
};
|
||
observable.addObserver(observer);
|
||
observable.reportChanges();
|
||
const disposable = {
|
||
dispose() {
|
||
observable.removeObserver(observer);
|
||
}
|
||
};
|
||
if (disposables instanceof lifecycle_1.DisposableStore) {
|
||
disposables.add(disposable);
|
||
}
|
||
else if (Array.isArray(disposables)) {
|
||
disposables.push(disposable);
|
||
}
|
||
return disposable;
|
||
};
|
||
}
|
||
Event.fromObservableLight = fromObservableLight;
|
||
})(Event || (exports.Event = Event = {}));
|
||
class EventProfiling {
|
||
static { this.all = new Set(); }
|
||
static { this._idPool = 0; }
|
||
constructor(name) {
|
||
this.listenerCount = 0;
|
||
this.invocationCount = 0;
|
||
this.elapsedOverall = 0;
|
||
this.durations = [];
|
||
this.name = `${name}_${EventProfiling._idPool++}`;
|
||
EventProfiling.all.add(this);
|
||
}
|
||
start(listenerCount) {
|
||
this._stopWatch = new stopwatch_1.StopWatch();
|
||
this.listenerCount = listenerCount;
|
||
}
|
||
stop() {
|
||
if (this._stopWatch) {
|
||
const elapsed = this._stopWatch.elapsed();
|
||
this.durations.push(elapsed);
|
||
this.elapsedOverall += elapsed;
|
||
this.invocationCount += 1;
|
||
this._stopWatch = undefined;
|
||
}
|
||
}
|
||
}
|
||
exports.EventProfiling = EventProfiling;
|
||
let _globalLeakWarningThreshold = -1;
|
||
class LeakageMonitor {
|
||
static { this._idPool = 1; }
|
||
constructor(_errorHandler, threshold, name = (LeakageMonitor._idPool++).toString(16).padStart(3, '0')) {
|
||
this._errorHandler = _errorHandler;
|
||
this.threshold = threshold;
|
||
this.name = name;
|
||
this._warnCountdown = 0;
|
||
}
|
||
dispose() {
|
||
this._stacks?.clear();
|
||
}
|
||
check(stack, listenerCount) {
|
||
const threshold = this.threshold;
|
||
if (threshold <= 0 || listenerCount < threshold) {
|
||
return undefined;
|
||
}
|
||
if (!this._stacks) {
|
||
this._stacks = new Map();
|
||
}
|
||
const count = (this._stacks.get(stack.value) || 0);
|
||
this._stacks.set(stack.value, count + 1);
|
||
this._warnCountdown -= 1;
|
||
if (this._warnCountdown <= 0) {
|
||
// only warn on first exceed and then every time the limit
|
||
// is exceeded by 50% again
|
||
this._warnCountdown = threshold * 0.5;
|
||
const [topStack, topCount] = this.getMostFrequentStack();
|
||
const message = `[${this.name}] potential listener LEAK detected, having ${listenerCount} listeners already. MOST frequent listener (${topCount}):`;
|
||
console.warn(message);
|
||
console.warn(topStack);
|
||
const error = new ListenerLeakError(message, topStack);
|
||
this._errorHandler(error);
|
||
}
|
||
return () => {
|
||
const count = (this._stacks.get(stack.value) || 0);
|
||
this._stacks.set(stack.value, count - 1);
|
||
};
|
||
}
|
||
getMostFrequentStack() {
|
||
if (!this._stacks) {
|
||
return undefined;
|
||
}
|
||
let topStack;
|
||
let topCount = 0;
|
||
for (const [stack, count] of this._stacks) {
|
||
if (!topStack || topCount < count) {
|
||
topStack = [stack, count];
|
||
topCount = count;
|
||
}
|
||
}
|
||
return topStack;
|
||
}
|
||
}
|
||
class Stacktrace {
|
||
static create() {
|
||
const err = new Error();
|
||
return new Stacktrace(err.stack ?? '');
|
||
}
|
||
constructor(value) {
|
||
this.value = value;
|
||
}
|
||
print() {
|
||
console.warn(this.value.split('\n').slice(2).join('\n'));
|
||
}
|
||
}
|
||
// error that is logged when going over the configured listener threshold
|
||
class ListenerLeakError extends Error {
|
||
constructor(message, stack) {
|
||
super(message);
|
||
this.name = 'ListenerLeakError';
|
||
this.stack = stack;
|
||
}
|
||
}
|
||
exports.ListenerLeakError = ListenerLeakError;
|
||
// SEVERE error that is logged when having gone way over the configured listener
|
||
// threshold so that the emitter refuses to accept more listeners
|
||
class ListenerRefusalError extends Error {
|
||
constructor(message, stack) {
|
||
super(message);
|
||
this.name = 'ListenerRefusalError';
|
||
this.stack = stack;
|
||
}
|
||
}
|
||
exports.ListenerRefusalError = ListenerRefusalError;
|
||
class UniqueContainer {
|
||
constructor(value) {
|
||
this.value = value;
|
||
}
|
||
}
|
||
const compactionThreshold = 2;
|
||
const forEachListener = (listeners, fn) => {
|
||
if (listeners instanceof UniqueContainer) {
|
||
fn(listeners);
|
||
}
|
||
else {
|
||
for (let i = 0; i < listeners.length; i++) {
|
||
const l = listeners[i];
|
||
if (l) {
|
||
fn(l);
|
||
}
|
||
}
|
||
}
|
||
};
|
||
let _listenerFinalizers;
|
||
if (_enableListenerGCedWarning) {
|
||
const leaks = [];
|
||
setInterval(() => {
|
||
if (leaks.length === 0) {
|
||
return;
|
||
}
|
||
console.warn('[LEAKING LISTENERS] GC\'ed these listeners that were NOT yet disposed:');
|
||
console.warn(leaks.join('\n'));
|
||
leaks.length = 0;
|
||
}, 3000);
|
||
_listenerFinalizers = new FinalizationRegistry(heldValue => {
|
||
if (typeof heldValue === 'string') {
|
||
leaks.push(heldValue);
|
||
}
|
||
});
|
||
}
|
||
/**
|
||
* The Emitter can be used to expose an Event to the public
|
||
* to fire it from the insides.
|
||
* Sample:
|
||
class Document {
|
||
|
||
private readonly _onDidChange = new Emitter<(value:string)=>any>();
|
||
|
||
public onDidChange = this._onDidChange.event;
|
||
|
||
// getter-style
|
||
// get onDidChange(): Event<(value:string)=>any> {
|
||
// return this._onDidChange.event;
|
||
// }
|
||
|
||
private _doIt() {
|
||
//...
|
||
this._onDidChange.fire(value);
|
||
}
|
||
}
|
||
*/
|
||
class Emitter {
|
||
constructor(options) {
|
||
this._size = 0;
|
||
this._options = options;
|
||
this._leakageMon = (_globalLeakWarningThreshold > 0 || this._options?.leakWarningThreshold)
|
||
? new LeakageMonitor(options?.onListenerError ?? errors_1.onUnexpectedError, this._options?.leakWarningThreshold ?? _globalLeakWarningThreshold) :
|
||
undefined;
|
||
this._perfMon = this._options?._profName ? new EventProfiling(this._options._profName) : undefined;
|
||
this._deliveryQueue = this._options?.deliveryQueue;
|
||
}
|
||
dispose() {
|
||
if (!this._disposed) {
|
||
this._disposed = true;
|
||
// It is bad to have listeners at the time of disposing an emitter, it is worst to have listeners keep the emitter
|
||
// alive via the reference that's embedded in their disposables. Therefore we loop over all remaining listeners and
|
||
// unset their subscriptions/disposables. Looping and blaming remaining listeners is done on next tick because the
|
||
// the following programming pattern is very popular:
|
||
//
|
||
// const someModel = this._disposables.add(new ModelObject()); // (1) create and register model
|
||
// this._disposables.add(someModel.onDidChange(() => { ... }); // (2) subscribe and register model-event listener
|
||
// ...later...
|
||
// this._disposables.dispose(); disposes (1) then (2): don't warn after (1) but after the "overall dispose" is done
|
||
if (this._deliveryQueue?.current === this) {
|
||
this._deliveryQueue.reset();
|
||
}
|
||
if (this._listeners) {
|
||
if (_enableDisposeWithListenerWarning) {
|
||
const listeners = this._listeners;
|
||
queueMicrotask(() => {
|
||
forEachListener(listeners, l => l.stack?.print());
|
||
});
|
||
}
|
||
this._listeners = undefined;
|
||
this._size = 0;
|
||
}
|
||
this._options?.onDidRemoveLastListener?.();
|
||
this._leakageMon?.dispose();
|
||
}
|
||
}
|
||
/**
|
||
* For the public to allow to subscribe
|
||
* to events from this Emitter
|
||
*/
|
||
get event() {
|
||
this._event ??= (callback, thisArgs, disposables) => {
|
||
if (this._leakageMon && this._size > this._leakageMon.threshold ** 2) {
|
||
const message = `[${this._leakageMon.name}] REFUSES to accept new listeners because it exceeded its threshold by far (${this._size} vs ${this._leakageMon.threshold})`;
|
||
console.warn(message);
|
||
const tuple = this._leakageMon.getMostFrequentStack() ?? ['UNKNOWN stack', -1];
|
||
const error = new ListenerRefusalError(`${message}. HINT: Stack shows most frequent listener (${tuple[1]}-times)`, tuple[0]);
|
||
const errorHandler = this._options?.onListenerError || errors_1.onUnexpectedError;
|
||
errorHandler(error);
|
||
return lifecycle_1.Disposable.None;
|
||
}
|
||
if (this._disposed) {
|
||
// todo: should we warn if a listener is added to a disposed emitter? This happens often
|
||
return lifecycle_1.Disposable.None;
|
||
}
|
||
if (thisArgs) {
|
||
callback = callback.bind(thisArgs);
|
||
}
|
||
const contained = new UniqueContainer(callback);
|
||
let removeMonitor;
|
||
let stack;
|
||
if (this._leakageMon && this._size >= Math.ceil(this._leakageMon.threshold * 0.2)) {
|
||
// check and record this emitter for potential leakage
|
||
contained.stack = Stacktrace.create();
|
||
removeMonitor = this._leakageMon.check(contained.stack, this._size + 1);
|
||
}
|
||
if (_enableDisposeWithListenerWarning) {
|
||
contained.stack = stack ?? Stacktrace.create();
|
||
}
|
||
if (!this._listeners) {
|
||
this._options?.onWillAddFirstListener?.(this);
|
||
this._listeners = contained;
|
||
this._options?.onDidAddFirstListener?.(this);
|
||
}
|
||
else if (this._listeners instanceof UniqueContainer) {
|
||
this._deliveryQueue ??= new EventDeliveryQueuePrivate();
|
||
this._listeners = [this._listeners, contained];
|
||
}
|
||
else {
|
||
this._listeners.push(contained);
|
||
}
|
||
this._size++;
|
||
const result = (0, lifecycle_1.toDisposable)(() => {
|
||
_listenerFinalizers?.unregister(result);
|
||
removeMonitor?.();
|
||
this._removeListener(contained);
|
||
});
|
||
if (disposables instanceof lifecycle_1.DisposableStore) {
|
||
disposables.add(result);
|
||
}
|
||
else if (Array.isArray(disposables)) {
|
||
disposables.push(result);
|
||
}
|
||
if (_listenerFinalizers) {
|
||
const stack = new Error().stack.split('\n').slice(2, 3).join('\n').trim();
|
||
const match = /(file:|vscode-file:\/\/vscode-app)?(\/[^:]*:\d+:\d+)/.exec(stack);
|
||
_listenerFinalizers.register(result, match?.[2] ?? stack, result);
|
||
}
|
||
return result;
|
||
};
|
||
return this._event;
|
||
}
|
||
_removeListener(listener) {
|
||
this._options?.onWillRemoveListener?.(this);
|
||
if (!this._listeners) {
|
||
return; // expected if a listener gets disposed
|
||
}
|
||
if (this._size === 1) {
|
||
this._listeners = undefined;
|
||
this._options?.onDidRemoveLastListener?.(this);
|
||
this._size = 0;
|
||
return;
|
||
}
|
||
// size > 1 which requires that listeners be a list:
|
||
const listeners = this._listeners;
|
||
const index = listeners.indexOf(listener);
|
||
if (index === -1) {
|
||
console.log('disposed?', this._disposed);
|
||
console.log('size?', this._size);
|
||
console.log('arr?', JSON.stringify(this._listeners));
|
||
throw new Error('Attempted to dispose unknown listener');
|
||
}
|
||
this._size--;
|
||
listeners[index] = undefined;
|
||
const adjustDeliveryQueue = this._deliveryQueue.current === this;
|
||
if (this._size * compactionThreshold <= listeners.length) {
|
||
let n = 0;
|
||
for (let i = 0; i < listeners.length; i++) {
|
||
if (listeners[i]) {
|
||
listeners[n++] = listeners[i];
|
||
}
|
||
else if (adjustDeliveryQueue) {
|
||
this._deliveryQueue.end--;
|
||
if (n < this._deliveryQueue.i) {
|
||
this._deliveryQueue.i--;
|
||
}
|
||
}
|
||
}
|
||
listeners.length = n;
|
||
}
|
||
}
|
||
_deliver(listener, value) {
|
||
if (!listener) {
|
||
return;
|
||
}
|
||
const errorHandler = this._options?.onListenerError || errors_1.onUnexpectedError;
|
||
if (!errorHandler) {
|
||
listener.value(value);
|
||
return;
|
||
}
|
||
try {
|
||
listener.value(value);
|
||
}
|
||
catch (e) {
|
||
errorHandler(e);
|
||
}
|
||
}
|
||
/** Delivers items in the queue. Assumes the queue is ready to go. */
|
||
_deliverQueue(dq) {
|
||
const listeners = dq.current._listeners;
|
||
while (dq.i < dq.end) {
|
||
// important: dq.i is incremented before calling deliver() because it might reenter deliverQueue()
|
||
this._deliver(listeners[dq.i++], dq.value);
|
||
}
|
||
dq.reset();
|
||
}
|
||
/**
|
||
* To be kept private to fire an event to
|
||
* subscribers
|
||
*/
|
||
fire(event) {
|
||
if (this._deliveryQueue?.current) {
|
||
this._deliverQueue(this._deliveryQueue);
|
||
this._perfMon?.stop(); // last fire() will have starting perfmon, stop it before starting the next dispatch
|
||
}
|
||
this._perfMon?.start(this._size);
|
||
if (!this._listeners) {
|
||
// no-op
|
||
}
|
||
else if (this._listeners instanceof UniqueContainer) {
|
||
this._deliver(this._listeners, event);
|
||
}
|
||
else {
|
||
const dq = this._deliveryQueue;
|
||
dq.enqueue(this, event, this._listeners.length);
|
||
this._deliverQueue(dq);
|
||
}
|
||
this._perfMon?.stop();
|
||
}
|
||
hasListeners() {
|
||
return this._size > 0;
|
||
}
|
||
}
|
||
exports.Emitter = Emitter;
|
||
const createEventDeliveryQueue = () => new EventDeliveryQueuePrivate();
|
||
exports.createEventDeliveryQueue = createEventDeliveryQueue;
|
||
class EventDeliveryQueuePrivate {
|
||
constructor() {
|
||
/**
|
||
* Index in current's listener list.
|
||
*/
|
||
this.i = -1;
|
||
/**
|
||
* The last index in the listener's list to deliver.
|
||
*/
|
||
this.end = 0;
|
||
}
|
||
enqueue(emitter, value, end) {
|
||
this.i = 0;
|
||
this.end = end;
|
||
this.current = emitter;
|
||
this.value = value;
|
||
}
|
||
reset() {
|
||
this.i = this.end; // force any current emission loop to stop, mainly for during dispose
|
||
this.current = undefined;
|
||
this.value = undefined;
|
||
}
|
||
}
|
||
class PauseableEmitter extends Emitter {
|
||
constructor(options) {
|
||
super(options);
|
||
this._isPaused = 0;
|
||
this._eventQueue = new linkedList_1.LinkedList();
|
||
this._mergeFn = options?.merge;
|
||
}
|
||
pause() {
|
||
this._isPaused++;
|
||
}
|
||
resume() {
|
||
if (this._isPaused !== 0 && --this._isPaused === 0) {
|
||
if (this._mergeFn) {
|
||
// use the merge function to create a single composite
|
||
// event. make a copy in case firing pauses this emitter
|
||
if (this._eventQueue.size > 0) {
|
||
const events = Array.from(this._eventQueue);
|
||
this._eventQueue.clear();
|
||
super.fire(this._mergeFn(events));
|
||
}
|
||
}
|
||
else {
|
||
// no merging, fire each event individually and test
|
||
// that this emitter isn't paused halfway through
|
||
while (!this._isPaused && this._eventQueue.size !== 0) {
|
||
super.fire(this._eventQueue.shift());
|
||
}
|
||
}
|
||
}
|
||
}
|
||
fire(event) {
|
||
if (this._size) {
|
||
if (this._isPaused !== 0) {
|
||
this._eventQueue.push(event);
|
||
}
|
||
else {
|
||
super.fire(event);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
exports.PauseableEmitter = PauseableEmitter;
|
||
class DebounceEmitter extends PauseableEmitter {
|
||
constructor(options) {
|
||
super(options);
|
||
this._delay = options.delay ?? 100;
|
||
}
|
||
fire(event) {
|
||
if (!this._handle) {
|
||
this.pause();
|
||
this._handle = setTimeout(() => {
|
||
this._handle = undefined;
|
||
this.resume();
|
||
}, this._delay);
|
||
}
|
||
super.fire(event);
|
||
}
|
||
}
|
||
exports.DebounceEmitter = DebounceEmitter;
|
||
/**
|
||
* An emitter which queue all events and then process them at the
|
||
* end of the event loop.
|
||
*/
|
||
class MicrotaskEmitter extends Emitter {
|
||
constructor(options) {
|
||
super(options);
|
||
this._queuedEvents = [];
|
||
this._mergeFn = options?.merge;
|
||
}
|
||
fire(event) {
|
||
if (!this.hasListeners()) {
|
||
return;
|
||
}
|
||
this._queuedEvents.push(event);
|
||
if (this._queuedEvents.length === 1) {
|
||
queueMicrotask(() => {
|
||
if (this._mergeFn) {
|
||
super.fire(this._mergeFn(this._queuedEvents));
|
||
}
|
||
else {
|
||
this._queuedEvents.forEach(e => super.fire(e));
|
||
}
|
||
this._queuedEvents = [];
|
||
});
|
||
}
|
||
}
|
||
}
|
||
exports.MicrotaskEmitter = MicrotaskEmitter;
|
||
/**
|
||
* An event emitter that multiplexes many events into a single event.
|
||
*
|
||
* @example Listen to the `onData` event of all `Thing`s, dynamically adding and removing `Thing`s
|
||
* to the multiplexer as needed.
|
||
*
|
||
* ```typescript
|
||
* const anythingDataMultiplexer = new EventMultiplexer<{ data: string }>();
|
||
*
|
||
* const thingListeners = DisposableMap<Thing, IDisposable>();
|
||
*
|
||
* thingService.onDidAddThing(thing => {
|
||
* thingListeners.set(thing, anythingDataMultiplexer.add(thing.onData);
|
||
* });
|
||
* thingService.onDidRemoveThing(thing => {
|
||
* thingListeners.deleteAndDispose(thing);
|
||
* });
|
||
*
|
||
* anythingDataMultiplexer.event(e => {
|
||
* console.log('Something fired data ' + e.data)
|
||
* });
|
||
* ```
|
||
*/
|
||
class EventMultiplexer {
|
||
constructor() {
|
||
this.hasListeners = false;
|
||
this.events = [];
|
||
this.emitter = new Emitter({
|
||
onWillAddFirstListener: () => this.onFirstListenerAdd(),
|
||
onDidRemoveLastListener: () => this.onLastListenerRemove()
|
||
});
|
||
}
|
||
get event() {
|
||
return this.emitter.event;
|
||
}
|
||
add(event) {
|
||
const e = { event: event, listener: null };
|
||
this.events.push(e);
|
||
if (this.hasListeners) {
|
||
this.hook(e);
|
||
}
|
||
const dispose = () => {
|
||
if (this.hasListeners) {
|
||
this.unhook(e);
|
||
}
|
||
const idx = this.events.indexOf(e);
|
||
this.events.splice(idx, 1);
|
||
};
|
||
return (0, lifecycle_1.toDisposable)((0, functional_1.createSingleCallFunction)(dispose));
|
||
}
|
||
onFirstListenerAdd() {
|
||
this.hasListeners = true;
|
||
this.events.forEach(e => this.hook(e));
|
||
}
|
||
onLastListenerRemove() {
|
||
this.hasListeners = false;
|
||
this.events.forEach(e => this.unhook(e));
|
||
}
|
||
hook(e) {
|
||
e.listener = e.event(r => this.emitter.fire(r));
|
||
}
|
||
unhook(e) {
|
||
e.listener?.dispose();
|
||
e.listener = null;
|
||
}
|
||
dispose() {
|
||
this.emitter.dispose();
|
||
for (const e of this.events) {
|
||
e.listener?.dispose();
|
||
}
|
||
this.events = [];
|
||
}
|
||
}
|
||
exports.EventMultiplexer = EventMultiplexer;
|
||
/**
|
||
* The EventBufferer is useful in situations in which you want
|
||
* to delay firing your events during some code.
|
||
* You can wrap that code and be sure that the event will not
|
||
* be fired during that wrap.
|
||
*
|
||
* ```
|
||
* const emitter: Emitter;
|
||
* const delayer = new EventDelayer();
|
||
* const delayedEvent = delayer.wrapEvent(emitter.event);
|
||
*
|
||
* delayedEvent(console.log);
|
||
*
|
||
* delayer.bufferEvents(() => {
|
||
* emitter.fire(); // event will not be fired yet
|
||
* });
|
||
*
|
||
* // event will only be fired at this point
|
||
* ```
|
||
*/
|
||
class EventBufferer {
|
||
constructor() {
|
||
this.data = [];
|
||
}
|
||
wrapEvent(event, reduce, initial) {
|
||
return (listener, thisArgs, disposables) => {
|
||
return event(i => {
|
||
const data = this.data[this.data.length - 1];
|
||
// Non-reduce scenario
|
||
if (!reduce) {
|
||
// Buffering case
|
||
if (data) {
|
||
data.buffers.push(() => listener.call(thisArgs, i));
|
||
}
|
||
else {
|
||
// Not buffering case
|
||
listener.call(thisArgs, i);
|
||
}
|
||
return;
|
||
}
|
||
// Reduce scenario
|
||
const reduceData = data;
|
||
// Not buffering case
|
||
if (!reduceData) {
|
||
// TODO: Is there a way to cache this reduce call for all listeners?
|
||
listener.call(thisArgs, reduce(initial, i));
|
||
return;
|
||
}
|
||
// Buffering case
|
||
reduceData.items ??= [];
|
||
reduceData.items.push(i);
|
||
if (reduceData.buffers.length === 0) {
|
||
// Include a single buffered function that will reduce all events when we're done buffering events
|
||
data.buffers.push(() => {
|
||
// cache the reduced result so that the value can be shared across all listeners
|
||
reduceData.reducedResult ??= initial
|
||
? reduceData.items.reduce(reduce, initial)
|
||
: reduceData.items.reduce(reduce);
|
||
listener.call(thisArgs, reduceData.reducedResult);
|
||
});
|
||
}
|
||
}, undefined, disposables);
|
||
};
|
||
}
|
||
bufferEvents(fn) {
|
||
const data = { buffers: new Array() };
|
||
this.data.push(data);
|
||
const r = fn();
|
||
this.data.pop();
|
||
data.buffers.forEach(flush => flush());
|
||
return r;
|
||
}
|
||
}
|
||
exports.EventBufferer = EventBufferer;
|
||
/**
|
||
* A Relay is an event forwarder which functions as a replugabble event pipe.
|
||
* Once created, you can connect an input event to it and it will simply forward
|
||
* events from that input event through its own `event` property. The `input`
|
||
* can be changed at any point in time.
|
||
*/
|
||
class Relay {
|
||
constructor() {
|
||
this.listening = false;
|
||
this.inputEvent = Event.None;
|
||
this.inputEventListener = lifecycle_1.Disposable.None;
|
||
this.emitter = new Emitter({
|
||
onDidAddFirstListener: () => {
|
||
this.listening = true;
|
||
this.inputEventListener = this.inputEvent(this.emitter.fire, this.emitter);
|
||
},
|
||
onDidRemoveLastListener: () => {
|
||
this.listening = false;
|
||
this.inputEventListener.dispose();
|
||
}
|
||
});
|
||
this.event = this.emitter.event;
|
||
}
|
||
set input(event) {
|
||
this.inputEvent = event;
|
||
if (this.listening) {
|
||
this.inputEventListener.dispose();
|
||
this.inputEventListener = event(this.emitter.fire, this.emitter);
|
||
}
|
||
}
|
||
dispose() {
|
||
this.inputEventListener.dispose();
|
||
this.emitter.dispose();
|
||
}
|
||
}
|
||
exports.Relay = Relay;
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[23/*vs/base/common/cancellation*/], __M([0/*require*/,1/*exports*/,9/*vs/base/common/event*/]), function (require, exports, event_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.CancellationTokenSource = exports.CancellationToken = void 0;
|
||
exports.cancelOnDispose = cancelOnDispose;
|
||
const shortcutEvent = Object.freeze(function (callback, context) {
|
||
const handle = setTimeout(callback.bind(context), 0);
|
||
return { dispose() { clearTimeout(handle); } };
|
||
});
|
||
var CancellationToken;
|
||
(function (CancellationToken) {
|
||
function isCancellationToken(thing) {
|
||
if (thing === CancellationToken.None || thing === CancellationToken.Cancelled) {
|
||
return true;
|
||
}
|
||
if (thing instanceof MutableToken) {
|
||
return true;
|
||
}
|
||
if (!thing || typeof thing !== 'object') {
|
||
return false;
|
||
}
|
||
return typeof thing.isCancellationRequested === 'boolean'
|
||
&& typeof thing.onCancellationRequested === 'function';
|
||
}
|
||
CancellationToken.isCancellationToken = isCancellationToken;
|
||
CancellationToken.None = Object.freeze({
|
||
isCancellationRequested: false,
|
||
onCancellationRequested: event_1.Event.None
|
||
});
|
||
CancellationToken.Cancelled = Object.freeze({
|
||
isCancellationRequested: true,
|
||
onCancellationRequested: shortcutEvent
|
||
});
|
||
})(CancellationToken || (exports.CancellationToken = CancellationToken = {}));
|
||
class MutableToken {
|
||
constructor() {
|
||
this._isCancelled = false;
|
||
this._emitter = null;
|
||
}
|
||
cancel() {
|
||
if (!this._isCancelled) {
|
||
this._isCancelled = true;
|
||
if (this._emitter) {
|
||
this._emitter.fire(undefined);
|
||
this.dispose();
|
||
}
|
||
}
|
||
}
|
||
get isCancellationRequested() {
|
||
return this._isCancelled;
|
||
}
|
||
get onCancellationRequested() {
|
||
if (this._isCancelled) {
|
||
return shortcutEvent;
|
||
}
|
||
if (!this._emitter) {
|
||
this._emitter = new event_1.Emitter();
|
||
}
|
||
return this._emitter.event;
|
||
}
|
||
dispose() {
|
||
if (this._emitter) {
|
||
this._emitter.dispose();
|
||
this._emitter = null;
|
||
}
|
||
}
|
||
}
|
||
class CancellationTokenSource {
|
||
constructor(parent) {
|
||
this._token = undefined;
|
||
this._parentListener = undefined;
|
||
this._parentListener = parent && parent.onCancellationRequested(this.cancel, this);
|
||
}
|
||
get token() {
|
||
if (!this._token) {
|
||
// be lazy and create the token only when
|
||
// actually needed
|
||
this._token = new MutableToken();
|
||
}
|
||
return this._token;
|
||
}
|
||
cancel() {
|
||
if (!this._token) {
|
||
// save an object by returning the default
|
||
// cancelled token when cancellation happens
|
||
// before someone asks for the token
|
||
this._token = CancellationToken.Cancelled;
|
||
}
|
||
else if (this._token instanceof MutableToken) {
|
||
// actually cancel
|
||
this._token.cancel();
|
||
}
|
||
}
|
||
dispose(cancel = false) {
|
||
if (cancel) {
|
||
this.cancel();
|
||
}
|
||
this._parentListener?.dispose();
|
||
if (!this._token) {
|
||
// ensure to initialize with an empty token if we had none
|
||
this._token = CancellationToken.None;
|
||
}
|
||
else if (this._token instanceof MutableToken) {
|
||
// actually dispose
|
||
this._token.dispose();
|
||
}
|
||
}
|
||
}
|
||
exports.CancellationTokenSource = CancellationTokenSource;
|
||
function cancelOnDispose(store) {
|
||
const source = new CancellationTokenSource();
|
||
store.add({ dispose() { source.cancel(); } });
|
||
return source.token;
|
||
}
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[6/*vs/base/common/strings*/], __M([0/*require*/,1/*exports*/,39/*vs/base/common/cache*/,43/*vs/base/common/lazy*/]), function (require, exports, cache_1, lazy_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.InvisibleCharacters = exports.AmbiguousCharacters = exports.noBreakWhitespace = exports.UTF8_BOM_CHARACTER = exports.UNUSUAL_LINE_TERMINATORS = exports.GraphemeIterator = exports.CodePointIterator = void 0;
|
||
exports.isFalsyOrWhitespace = isFalsyOrWhitespace;
|
||
exports.format = format;
|
||
exports.htmlAttributeEncodeValue = htmlAttributeEncodeValue;
|
||
exports.escape = escape;
|
||
exports.escapeRegExpCharacters = escapeRegExpCharacters;
|
||
exports.trim = trim;
|
||
exports.ltrim = ltrim;
|
||
exports.rtrim = rtrim;
|
||
exports.convertSimple2RegExpPattern = convertSimple2RegExpPattern;
|
||
exports.stripWildcards = stripWildcards;
|
||
exports.createRegExp = createRegExp;
|
||
exports.regExpLeadsToEndlessLoop = regExpLeadsToEndlessLoop;
|
||
exports.splitLines = splitLines;
|
||
exports.splitLinesIncludeSeparators = splitLinesIncludeSeparators;
|
||
exports.firstNonWhitespaceIndex = firstNonWhitespaceIndex;
|
||
exports.getLeadingWhitespace = getLeadingWhitespace;
|
||
exports.lastNonWhitespaceIndex = lastNonWhitespaceIndex;
|
||
exports.compare = compare;
|
||
exports.compareSubstring = compareSubstring;
|
||
exports.compareIgnoreCase = compareIgnoreCase;
|
||
exports.compareSubstringIgnoreCase = compareSubstringIgnoreCase;
|
||
exports.isAsciiDigit = isAsciiDigit;
|
||
exports.isLowerAsciiLetter = isLowerAsciiLetter;
|
||
exports.isUpperAsciiLetter = isUpperAsciiLetter;
|
||
exports.equalsIgnoreCase = equalsIgnoreCase;
|
||
exports.startsWithIgnoreCase = startsWithIgnoreCase;
|
||
exports.commonPrefixLength = commonPrefixLength;
|
||
exports.commonSuffixLength = commonSuffixLength;
|
||
exports.isHighSurrogate = isHighSurrogate;
|
||
exports.isLowSurrogate = isLowSurrogate;
|
||
exports.computeCodePoint = computeCodePoint;
|
||
exports.getNextCodePoint = getNextCodePoint;
|
||
exports.nextCharLength = nextCharLength;
|
||
exports.prevCharLength = prevCharLength;
|
||
exports.getCharContainingOffset = getCharContainingOffset;
|
||
exports.containsRTL = containsRTL;
|
||
exports.isBasicASCII = isBasicASCII;
|
||
exports.containsUnusualLineTerminators = containsUnusualLineTerminators;
|
||
exports.isFullWidthCharacter = isFullWidthCharacter;
|
||
exports.isEmojiImprecise = isEmojiImprecise;
|
||
exports.startsWithUTF8BOM = startsWithUTF8BOM;
|
||
exports.containsUppercaseCharacter = containsUppercaseCharacter;
|
||
exports.singleLetterHash = singleLetterHash;
|
||
exports.getLeftDeleteOffset = getLeftDeleteOffset;
|
||
function isFalsyOrWhitespace(str) {
|
||
if (!str || typeof str !== 'string') {
|
||
return true;
|
||
}
|
||
return str.trim().length === 0;
|
||
}
|
||
const _formatRegexp = /{(\d+)}/g;
|
||
/**
|
||
* Helper to produce a string with a variable number of arguments. Insert variable segments
|
||
* into the string using the {n} notation where N is the index of the argument following the string.
|
||
* @param value string to which formatting is applied
|
||
* @param args replacements for {n}-entries
|
||
*/
|
||
function format(value, ...args) {
|
||
if (args.length === 0) {
|
||
return value;
|
||
}
|
||
return value.replace(_formatRegexp, function (match, group) {
|
||
const idx = parseInt(group, 10);
|
||
return isNaN(idx) || idx < 0 || idx >= args.length ?
|
||
match :
|
||
args[idx];
|
||
});
|
||
}
|
||
/**
|
||
* Encodes the given value so that it can be used as literal value in html attributes.
|
||
*
|
||
* In other words, computes `$val`, such that `attr` in `<div attr="$val" />` has the runtime value `value`.
|
||
* This prevents XSS injection.
|
||
*/
|
||
function htmlAttributeEncodeValue(value) {
|
||
return value.replace(/[<>"'&]/g, ch => {
|
||
switch (ch) {
|
||
case '<': return '<';
|
||
case '>': return '>';
|
||
case '"': return '"';
|
||
case '\'': return ''';
|
||
case '&': return '&';
|
||
}
|
||
return ch;
|
||
});
|
||
}
|
||
/**
|
||
* Converts HTML characters inside the string to use entities instead. Makes the string safe from
|
||
* being used e.g. in HTMLElement.innerHTML.
|
||
*/
|
||
function escape(html) {
|
||
return html.replace(/[<>&]/g, function (match) {
|
||
switch (match) {
|
||
case '<': return '<';
|
||
case '>': return '>';
|
||
case '&': return '&';
|
||
default: return match;
|
||
}
|
||
});
|
||
}
|
||
/**
|
||
* Escapes regular expression characters in a given string
|
||
*/
|
||
function escapeRegExpCharacters(value) {
|
||
return value.replace(/[\\\{\}\*\+\?\|\^\$\.\[\]\(\)]/g, '\\$&');
|
||
}
|
||
/**
|
||
* Removes all occurrences of needle from the beginning and end of haystack.
|
||
* @param haystack string to trim
|
||
* @param needle the thing to trim (default is a blank)
|
||
*/
|
||
function trim(haystack, needle = ' ') {
|
||
const trimmed = ltrim(haystack, needle);
|
||
return rtrim(trimmed, needle);
|
||
}
|
||
/**
|
||
* Removes all occurrences of needle from the beginning of haystack.
|
||
* @param haystack string to trim
|
||
* @param needle the thing to trim
|
||
*/
|
||
function ltrim(haystack, needle) {
|
||
if (!haystack || !needle) {
|
||
return haystack;
|
||
}
|
||
const needleLen = needle.length;
|
||
if (needleLen === 0 || haystack.length === 0) {
|
||
return haystack;
|
||
}
|
||
let offset = 0;
|
||
while (haystack.indexOf(needle, offset) === offset) {
|
||
offset = offset + needleLen;
|
||
}
|
||
return haystack.substring(offset);
|
||
}
|
||
/**
|
||
* Removes all occurrences of needle from the end of haystack.
|
||
* @param haystack string to trim
|
||
* @param needle the thing to trim
|
||
*/
|
||
function rtrim(haystack, needle) {
|
||
if (!haystack || !needle) {
|
||
return haystack;
|
||
}
|
||
const needleLen = needle.length, haystackLen = haystack.length;
|
||
if (needleLen === 0 || haystackLen === 0) {
|
||
return haystack;
|
||
}
|
||
let offset = haystackLen, idx = -1;
|
||
while (true) {
|
||
idx = haystack.lastIndexOf(needle, offset - 1);
|
||
if (idx === -1 || idx + needleLen !== offset) {
|
||
break;
|
||
}
|
||
if (idx === 0) {
|
||
return '';
|
||
}
|
||
offset = idx;
|
||
}
|
||
return haystack.substring(0, offset);
|
||
}
|
||
function convertSimple2RegExpPattern(pattern) {
|
||
return pattern.replace(/[\-\\\{\}\+\?\|\^\$\.\,\[\]\(\)\#\s]/g, '\\$&').replace(/[\*]/g, '.*');
|
||
}
|
||
function stripWildcards(pattern) {
|
||
return pattern.replace(/\*/g, '');
|
||
}
|
||
function createRegExp(searchString, isRegex, options = {}) {
|
||
if (!searchString) {
|
||
throw new Error('Cannot create regex from empty string');
|
||
}
|
||
if (!isRegex) {
|
||
searchString = escapeRegExpCharacters(searchString);
|
||
}
|
||
if (options.wholeWord) {
|
||
if (!/\B/.test(searchString.charAt(0))) {
|
||
searchString = '\\b' + searchString;
|
||
}
|
||
if (!/\B/.test(searchString.charAt(searchString.length - 1))) {
|
||
searchString = searchString + '\\b';
|
||
}
|
||
}
|
||
let modifiers = '';
|
||
if (options.global) {
|
||
modifiers += 'g';
|
||
}
|
||
if (!options.matchCase) {
|
||
modifiers += 'i';
|
||
}
|
||
if (options.multiline) {
|
||
modifiers += 'm';
|
||
}
|
||
if (options.unicode) {
|
||
modifiers += 'u';
|
||
}
|
||
return new RegExp(searchString, modifiers);
|
||
}
|
||
function regExpLeadsToEndlessLoop(regexp) {
|
||
// Exit early if it's one of these special cases which are meant to match
|
||
// against an empty string
|
||
if (regexp.source === '^' || regexp.source === '^$' || regexp.source === '$' || regexp.source === '^\\s*$') {
|
||
return false;
|
||
}
|
||
// We check against an empty string. If the regular expression doesn't advance
|
||
// (e.g. ends in an endless loop) it will match an empty string.
|
||
const match = regexp.exec('');
|
||
return !!(match && regexp.lastIndex === 0);
|
||
}
|
||
function splitLines(str) {
|
||
return str.split(/\r\n|\r|\n/);
|
||
}
|
||
function splitLinesIncludeSeparators(str) {
|
||
const linesWithSeparators = [];
|
||
const splitLinesAndSeparators = str.split(/(\r\n|\r|\n)/);
|
||
for (let i = 0; i < Math.ceil(splitLinesAndSeparators.length / 2); i++) {
|
||
linesWithSeparators.push(splitLinesAndSeparators[2 * i] + (splitLinesAndSeparators[2 * i + 1] ?? ''));
|
||
}
|
||
return linesWithSeparators;
|
||
}
|
||
/**
|
||
* Returns first index of the string that is not whitespace.
|
||
* If string is empty or contains only whitespaces, returns -1
|
||
*/
|
||
function firstNonWhitespaceIndex(str) {
|
||
for (let i = 0, len = str.length; i < len; i++) {
|
||
const chCode = str.charCodeAt(i);
|
||
if (chCode !== 32 /* CharCode.Space */ && chCode !== 9 /* CharCode.Tab */) {
|
||
return i;
|
||
}
|
||
}
|
||
return -1;
|
||
}
|
||
/**
|
||
* Returns the leading whitespace of the string.
|
||
* If the string contains only whitespaces, returns entire string
|
||
*/
|
||
function getLeadingWhitespace(str, start = 0, end = str.length) {
|
||
for (let i = start; i < end; i++) {
|
||
const chCode = str.charCodeAt(i);
|
||
if (chCode !== 32 /* CharCode.Space */ && chCode !== 9 /* CharCode.Tab */) {
|
||
return str.substring(start, i);
|
||
}
|
||
}
|
||
return str.substring(start, end);
|
||
}
|
||
/**
|
||
* Returns last index of the string that is not whitespace.
|
||
* If string is empty or contains only whitespaces, returns -1
|
||
*/
|
||
function lastNonWhitespaceIndex(str, startIndex = str.length - 1) {
|
||
for (let i = startIndex; i >= 0; i--) {
|
||
const chCode = str.charCodeAt(i);
|
||
if (chCode !== 32 /* CharCode.Space */ && chCode !== 9 /* CharCode.Tab */) {
|
||
return i;
|
||
}
|
||
}
|
||
return -1;
|
||
}
|
||
function compare(a, b) {
|
||
if (a < b) {
|
||
return -1;
|
||
}
|
||
else if (a > b) {
|
||
return 1;
|
||
}
|
||
else {
|
||
return 0;
|
||
}
|
||
}
|
||
function compareSubstring(a, b, aStart = 0, aEnd = a.length, bStart = 0, bEnd = b.length) {
|
||
for (; aStart < aEnd && bStart < bEnd; aStart++, bStart++) {
|
||
const codeA = a.charCodeAt(aStart);
|
||
const codeB = b.charCodeAt(bStart);
|
||
if (codeA < codeB) {
|
||
return -1;
|
||
}
|
||
else if (codeA > codeB) {
|
||
return 1;
|
||
}
|
||
}
|
||
const aLen = aEnd - aStart;
|
||
const bLen = bEnd - bStart;
|
||
if (aLen < bLen) {
|
||
return -1;
|
||
}
|
||
else if (aLen > bLen) {
|
||
return 1;
|
||
}
|
||
return 0;
|
||
}
|
||
function compareIgnoreCase(a, b) {
|
||
return compareSubstringIgnoreCase(a, b, 0, a.length, 0, b.length);
|
||
}
|
||
function compareSubstringIgnoreCase(a, b, aStart = 0, aEnd = a.length, bStart = 0, bEnd = b.length) {
|
||
for (; aStart < aEnd && bStart < bEnd; aStart++, bStart++) {
|
||
let codeA = a.charCodeAt(aStart);
|
||
let codeB = b.charCodeAt(bStart);
|
||
if (codeA === codeB) {
|
||
// equal
|
||
continue;
|
||
}
|
||
if (codeA >= 128 || codeB >= 128) {
|
||
// not ASCII letters -> fallback to lower-casing strings
|
||
return compareSubstring(a.toLowerCase(), b.toLowerCase(), aStart, aEnd, bStart, bEnd);
|
||
}
|
||
// mapper lower-case ascii letter onto upper-case varinats
|
||
// [97-122] (lower ascii) --> [65-90] (upper ascii)
|
||
if (isLowerAsciiLetter(codeA)) {
|
||
codeA -= 32;
|
||
}
|
||
if (isLowerAsciiLetter(codeB)) {
|
||
codeB -= 32;
|
||
}
|
||
// compare both code points
|
||
const diff = codeA - codeB;
|
||
if (diff === 0) {
|
||
continue;
|
||
}
|
||
return diff;
|
||
}
|
||
const aLen = aEnd - aStart;
|
||
const bLen = bEnd - bStart;
|
||
if (aLen < bLen) {
|
||
return -1;
|
||
}
|
||
else if (aLen > bLen) {
|
||
return 1;
|
||
}
|
||
return 0;
|
||
}
|
||
function isAsciiDigit(code) {
|
||
return code >= 48 /* CharCode.Digit0 */ && code <= 57 /* CharCode.Digit9 */;
|
||
}
|
||
function isLowerAsciiLetter(code) {
|
||
return code >= 97 /* CharCode.a */ && code <= 122 /* CharCode.z */;
|
||
}
|
||
function isUpperAsciiLetter(code) {
|
||
return code >= 65 /* CharCode.A */ && code <= 90 /* CharCode.Z */;
|
||
}
|
||
function equalsIgnoreCase(a, b) {
|
||
return a.length === b.length && compareSubstringIgnoreCase(a, b) === 0;
|
||
}
|
||
function startsWithIgnoreCase(str, candidate) {
|
||
const candidateLength = candidate.length;
|
||
if (candidate.length > str.length) {
|
||
return false;
|
||
}
|
||
return compareSubstringIgnoreCase(str, candidate, 0, candidateLength) === 0;
|
||
}
|
||
/**
|
||
* @returns the length of the common prefix of the two strings.
|
||
*/
|
||
function commonPrefixLength(a, b) {
|
||
const len = Math.min(a.length, b.length);
|
||
let i;
|
||
for (i = 0; i < len; i++) {
|
||
if (a.charCodeAt(i) !== b.charCodeAt(i)) {
|
||
return i;
|
||
}
|
||
}
|
||
return len;
|
||
}
|
||
/**
|
||
* @returns the length of the common suffix of the two strings.
|
||
*/
|
||
function commonSuffixLength(a, b) {
|
||
const len = Math.min(a.length, b.length);
|
||
let i;
|
||
const aLastIndex = a.length - 1;
|
||
const bLastIndex = b.length - 1;
|
||
for (i = 0; i < len; i++) {
|
||
if (a.charCodeAt(aLastIndex - i) !== b.charCodeAt(bLastIndex - i)) {
|
||
return i;
|
||
}
|
||
}
|
||
return len;
|
||
}
|
||
/**
|
||
* See http://en.wikipedia.org/wiki/Surrogate_pair
|
||
*/
|
||
function isHighSurrogate(charCode) {
|
||
return (0xD800 <= charCode && charCode <= 0xDBFF);
|
||
}
|
||
/**
|
||
* See http://en.wikipedia.org/wiki/Surrogate_pair
|
||
*/
|
||
function isLowSurrogate(charCode) {
|
||
return (0xDC00 <= charCode && charCode <= 0xDFFF);
|
||
}
|
||
/**
|
||
* See http://en.wikipedia.org/wiki/Surrogate_pair
|
||
*/
|
||
function computeCodePoint(highSurrogate, lowSurrogate) {
|
||
return ((highSurrogate - 0xD800) << 10) + (lowSurrogate - 0xDC00) + 0x10000;
|
||
}
|
||
/**
|
||
* get the code point that begins at offset `offset`
|
||
*/
|
||
function getNextCodePoint(str, len, offset) {
|
||
const charCode = str.charCodeAt(offset);
|
||
if (isHighSurrogate(charCode) && offset + 1 < len) {
|
||
const nextCharCode = str.charCodeAt(offset + 1);
|
||
if (isLowSurrogate(nextCharCode)) {
|
||
return computeCodePoint(charCode, nextCharCode);
|
||
}
|
||
}
|
||
return charCode;
|
||
}
|
||
/**
|
||
* get the code point that ends right before offset `offset`
|
||
*/
|
||
function getPrevCodePoint(str, offset) {
|
||
const charCode = str.charCodeAt(offset - 1);
|
||
if (isLowSurrogate(charCode) && offset > 1) {
|
||
const prevCharCode = str.charCodeAt(offset - 2);
|
||
if (isHighSurrogate(prevCharCode)) {
|
||
return computeCodePoint(prevCharCode, charCode);
|
||
}
|
||
}
|
||
return charCode;
|
||
}
|
||
class CodePointIterator {
|
||
get offset() {
|
||
return this._offset;
|
||
}
|
||
constructor(str, offset = 0) {
|
||
this._str = str;
|
||
this._len = str.length;
|
||
this._offset = offset;
|
||
}
|
||
setOffset(offset) {
|
||
this._offset = offset;
|
||
}
|
||
prevCodePoint() {
|
||
const codePoint = getPrevCodePoint(this._str, this._offset);
|
||
this._offset -= (codePoint >= 65536 /* Constants.UNICODE_SUPPLEMENTARY_PLANE_BEGIN */ ? 2 : 1);
|
||
return codePoint;
|
||
}
|
||
nextCodePoint() {
|
||
const codePoint = getNextCodePoint(this._str, this._len, this._offset);
|
||
this._offset += (codePoint >= 65536 /* Constants.UNICODE_SUPPLEMENTARY_PLANE_BEGIN */ ? 2 : 1);
|
||
return codePoint;
|
||
}
|
||
eol() {
|
||
return (this._offset >= this._len);
|
||
}
|
||
}
|
||
exports.CodePointIterator = CodePointIterator;
|
||
class GraphemeIterator {
|
||
get offset() {
|
||
return this._iterator.offset;
|
||
}
|
||
constructor(str, offset = 0) {
|
||
this._iterator = new CodePointIterator(str, offset);
|
||
}
|
||
nextGraphemeLength() {
|
||
const graphemeBreakTree = GraphemeBreakTree.getInstance();
|
||
const iterator = this._iterator;
|
||
const initialOffset = iterator.offset;
|
||
let graphemeBreakType = graphemeBreakTree.getGraphemeBreakType(iterator.nextCodePoint());
|
||
while (!iterator.eol()) {
|
||
const offset = iterator.offset;
|
||
const nextGraphemeBreakType = graphemeBreakTree.getGraphemeBreakType(iterator.nextCodePoint());
|
||
if (breakBetweenGraphemeBreakType(graphemeBreakType, nextGraphemeBreakType)) {
|
||
// move iterator back
|
||
iterator.setOffset(offset);
|
||
break;
|
||
}
|
||
graphemeBreakType = nextGraphemeBreakType;
|
||
}
|
||
return (iterator.offset - initialOffset);
|
||
}
|
||
prevGraphemeLength() {
|
||
const graphemeBreakTree = GraphemeBreakTree.getInstance();
|
||
const iterator = this._iterator;
|
||
const initialOffset = iterator.offset;
|
||
let graphemeBreakType = graphemeBreakTree.getGraphemeBreakType(iterator.prevCodePoint());
|
||
while (iterator.offset > 0) {
|
||
const offset = iterator.offset;
|
||
const prevGraphemeBreakType = graphemeBreakTree.getGraphemeBreakType(iterator.prevCodePoint());
|
||
if (breakBetweenGraphemeBreakType(prevGraphemeBreakType, graphemeBreakType)) {
|
||
// move iterator back
|
||
iterator.setOffset(offset);
|
||
break;
|
||
}
|
||
graphemeBreakType = prevGraphemeBreakType;
|
||
}
|
||
return (initialOffset - iterator.offset);
|
||
}
|
||
eol() {
|
||
return this._iterator.eol();
|
||
}
|
||
}
|
||
exports.GraphemeIterator = GraphemeIterator;
|
||
function nextCharLength(str, initialOffset) {
|
||
const iterator = new GraphemeIterator(str, initialOffset);
|
||
return iterator.nextGraphemeLength();
|
||
}
|
||
function prevCharLength(str, initialOffset) {
|
||
const iterator = new GraphemeIterator(str, initialOffset);
|
||
return iterator.prevGraphemeLength();
|
||
}
|
||
function getCharContainingOffset(str, offset) {
|
||
if (offset > 0 && isLowSurrogate(str.charCodeAt(offset))) {
|
||
offset--;
|
||
}
|
||
const endOffset = offset + nextCharLength(str, offset);
|
||
const startOffset = endOffset - prevCharLength(str, endOffset);
|
||
return [startOffset, endOffset];
|
||
}
|
||
let CONTAINS_RTL = undefined;
|
||
function makeContainsRtl() {
|
||
// Generated using https://github.com/alexdima/unicode-utils/blob/main/rtl-test.js
|
||
return /(?:[\u05BE\u05C0\u05C3\u05C6\u05D0-\u05F4\u0608\u060B\u060D\u061B-\u064A\u066D-\u066F\u0671-\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u0710\u0712-\u072F\u074D-\u07A5\u07B1-\u07EA\u07F4\u07F5\u07FA\u07FE-\u0815\u081A\u0824\u0828\u0830-\u0858\u085E-\u088E\u08A0-\u08C9\u200F\uFB1D\uFB1F-\uFB28\uFB2A-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFC\uFE70-\uFEFC]|\uD802[\uDC00-\uDD1B\uDD20-\uDE00\uDE10-\uDE35\uDE40-\uDEE4\uDEEB-\uDF35\uDF40-\uDFFF]|\uD803[\uDC00-\uDD23\uDE80-\uDEA9\uDEAD-\uDF45\uDF51-\uDF81\uDF86-\uDFF6]|\uD83A[\uDC00-\uDCCF\uDD00-\uDD43\uDD4B-\uDFFF]|\uD83B[\uDC00-\uDEBB])/;
|
||
}
|
||
/**
|
||
* Returns true if `str` contains any Unicode character that is classified as "R" or "AL".
|
||
*/
|
||
function containsRTL(str) {
|
||
if (!CONTAINS_RTL) {
|
||
CONTAINS_RTL = makeContainsRtl();
|
||
}
|
||
return CONTAINS_RTL.test(str);
|
||
}
|
||
const IS_BASIC_ASCII = /^[\t\n\r\x20-\x7E]*$/;
|
||
/**
|
||
* Returns true if `str` contains only basic ASCII characters in the range 32 - 126 (including 32 and 126) or \n, \r, \t
|
||
*/
|
||
function isBasicASCII(str) {
|
||
return IS_BASIC_ASCII.test(str);
|
||
}
|
||
exports.UNUSUAL_LINE_TERMINATORS = /[\u2028\u2029]/; // LINE SEPARATOR (LS) or PARAGRAPH SEPARATOR (PS)
|
||
/**
|
||
* Returns true if `str` contains unusual line terminators, like LS or PS
|
||
*/
|
||
function containsUnusualLineTerminators(str) {
|
||
return exports.UNUSUAL_LINE_TERMINATORS.test(str);
|
||
}
|
||
function isFullWidthCharacter(charCode) {
|
||
// Do a cheap trick to better support wrapping of wide characters, treat them as 2 columns
|
||
// http://jrgraphix.net/research/unicode_blocks.php
|
||
// 2E80 - 2EFF CJK Radicals Supplement
|
||
// 2F00 - 2FDF Kangxi Radicals
|
||
// 2FF0 - 2FFF Ideographic Description Characters
|
||
// 3000 - 303F CJK Symbols and Punctuation
|
||
// 3040 - 309F Hiragana
|
||
// 30A0 - 30FF Katakana
|
||
// 3100 - 312F Bopomofo
|
||
// 3130 - 318F Hangul Compatibility Jamo
|
||
// 3190 - 319F Kanbun
|
||
// 31A0 - 31BF Bopomofo Extended
|
||
// 31F0 - 31FF Katakana Phonetic Extensions
|
||
// 3200 - 32FF Enclosed CJK Letters and Months
|
||
// 3300 - 33FF CJK Compatibility
|
||
// 3400 - 4DBF CJK Unified Ideographs Extension A
|
||
// 4DC0 - 4DFF Yijing Hexagram Symbols
|
||
// 4E00 - 9FFF CJK Unified Ideographs
|
||
// A000 - A48F Yi Syllables
|
||
// A490 - A4CF Yi Radicals
|
||
// AC00 - D7AF Hangul Syllables
|
||
// [IGNORE] D800 - DB7F High Surrogates
|
||
// [IGNORE] DB80 - DBFF High Private Use Surrogates
|
||
// [IGNORE] DC00 - DFFF Low Surrogates
|
||
// [IGNORE] E000 - F8FF Private Use Area
|
||
// F900 - FAFF CJK Compatibility Ideographs
|
||
// [IGNORE] FB00 - FB4F Alphabetic Presentation Forms
|
||
// [IGNORE] FB50 - FDFF Arabic Presentation Forms-A
|
||
// [IGNORE] FE00 - FE0F Variation Selectors
|
||
// [IGNORE] FE20 - FE2F Combining Half Marks
|
||
// [IGNORE] FE30 - FE4F CJK Compatibility Forms
|
||
// [IGNORE] FE50 - FE6F Small Form Variants
|
||
// [IGNORE] FE70 - FEFF Arabic Presentation Forms-B
|
||
// FF00 - FFEF Halfwidth and Fullwidth Forms
|
||
// [https://en.wikipedia.org/wiki/Halfwidth_and_fullwidth_forms]
|
||
// of which FF01 - FF5E fullwidth ASCII of 21 to 7E
|
||
// [IGNORE] and FF65 - FFDC halfwidth of Katakana and Hangul
|
||
// [IGNORE] FFF0 - FFFF Specials
|
||
return ((charCode >= 0x2E80 && charCode <= 0xD7AF)
|
||
|| (charCode >= 0xF900 && charCode <= 0xFAFF)
|
||
|| (charCode >= 0xFF01 && charCode <= 0xFF5E));
|
||
}
|
||
/**
|
||
* A fast function (therefore imprecise) to check if code points are emojis.
|
||
* Generated using https://github.com/alexdima/unicode-utils/blob/main/emoji-test.js
|
||
*/
|
||
function isEmojiImprecise(x) {
|
||
return ((x >= 0x1F1E6 && x <= 0x1F1FF) || (x === 8986) || (x === 8987) || (x === 9200)
|
||
|| (x === 9203) || (x >= 9728 && x <= 10175) || (x === 11088) || (x === 11093)
|
||
|| (x >= 127744 && x <= 128591) || (x >= 128640 && x <= 128764)
|
||
|| (x >= 128992 && x <= 129008) || (x >= 129280 && x <= 129535)
|
||
|| (x >= 129648 && x <= 129782));
|
||
}
|
||
// -- UTF-8 BOM
|
||
exports.UTF8_BOM_CHARACTER = String.fromCharCode(65279 /* CharCode.UTF8_BOM */);
|
||
function startsWithUTF8BOM(str) {
|
||
return !!(str && str.length > 0 && str.charCodeAt(0) === 65279 /* CharCode.UTF8_BOM */);
|
||
}
|
||
function containsUppercaseCharacter(target, ignoreEscapedChars = false) {
|
||
if (!target) {
|
||
return false;
|
||
}
|
||
if (ignoreEscapedChars) {
|
||
target = target.replace(/\\./g, '');
|
||
}
|
||
return target.toLowerCase() !== target;
|
||
}
|
||
/**
|
||
* Produces 'a'-'z', followed by 'A'-'Z'... followed by 'a'-'z', etc.
|
||
*/
|
||
function singleLetterHash(n) {
|
||
const LETTERS_CNT = (90 /* CharCode.Z */ - 65 /* CharCode.A */ + 1);
|
||
n = n % (2 * LETTERS_CNT);
|
||
if (n < LETTERS_CNT) {
|
||
return String.fromCharCode(97 /* CharCode.a */ + n);
|
||
}
|
||
return String.fromCharCode(65 /* CharCode.A */ + n - LETTERS_CNT);
|
||
}
|
||
function breakBetweenGraphemeBreakType(breakTypeA, breakTypeB) {
|
||
// http://www.unicode.org/reports/tr29/#Grapheme_Cluster_Boundary_Rules
|
||
// !!! Let's make the common case a bit faster
|
||
if (breakTypeA === 0 /* GraphemeBreakType.Other */) {
|
||
// see https://www.unicode.org/Public/13.0.0/ucd/auxiliary/GraphemeBreakTest-13.0.0d10.html#table
|
||
return (breakTypeB !== 5 /* GraphemeBreakType.Extend */ && breakTypeB !== 7 /* GraphemeBreakType.SpacingMark */);
|
||
}
|
||
// Do not break between a CR and LF. Otherwise, break before and after controls.
|
||
// GB3 CR × LF
|
||
// GB4 (Control | CR | LF) ÷
|
||
// GB5 ÷ (Control | CR | LF)
|
||
if (breakTypeA === 2 /* GraphemeBreakType.CR */) {
|
||
if (breakTypeB === 3 /* GraphemeBreakType.LF */) {
|
||
return false; // GB3
|
||
}
|
||
}
|
||
if (breakTypeA === 4 /* GraphemeBreakType.Control */ || breakTypeA === 2 /* GraphemeBreakType.CR */ || breakTypeA === 3 /* GraphemeBreakType.LF */) {
|
||
return true; // GB4
|
||
}
|
||
if (breakTypeB === 4 /* GraphemeBreakType.Control */ || breakTypeB === 2 /* GraphemeBreakType.CR */ || breakTypeB === 3 /* GraphemeBreakType.LF */) {
|
||
return true; // GB5
|
||
}
|
||
// Do not break Hangul syllable sequences.
|
||
// GB6 L × (L | V | LV | LVT)
|
||
// GB7 (LV | V) × (V | T)
|
||
// GB8 (LVT | T) × T
|
||
if (breakTypeA === 8 /* GraphemeBreakType.L */) {
|
||
if (breakTypeB === 8 /* GraphemeBreakType.L */ || breakTypeB === 9 /* GraphemeBreakType.V */ || breakTypeB === 11 /* GraphemeBreakType.LV */ || breakTypeB === 12 /* GraphemeBreakType.LVT */) {
|
||
return false; // GB6
|
||
}
|
||
}
|
||
if (breakTypeA === 11 /* GraphemeBreakType.LV */ || breakTypeA === 9 /* GraphemeBreakType.V */) {
|
||
if (breakTypeB === 9 /* GraphemeBreakType.V */ || breakTypeB === 10 /* GraphemeBreakType.T */) {
|
||
return false; // GB7
|
||
}
|
||
}
|
||
if (breakTypeA === 12 /* GraphemeBreakType.LVT */ || breakTypeA === 10 /* GraphemeBreakType.T */) {
|
||
if (breakTypeB === 10 /* GraphemeBreakType.T */) {
|
||
return false; // GB8
|
||
}
|
||
}
|
||
// Do not break before extending characters or ZWJ.
|
||
// GB9 × (Extend | ZWJ)
|
||
if (breakTypeB === 5 /* GraphemeBreakType.Extend */ || breakTypeB === 13 /* GraphemeBreakType.ZWJ */) {
|
||
return false; // GB9
|
||
}
|
||
// The GB9a and GB9b rules only apply to extended grapheme clusters:
|
||
// Do not break before SpacingMarks, or after Prepend characters.
|
||
// GB9a × SpacingMark
|
||
// GB9b Prepend ×
|
||
if (breakTypeB === 7 /* GraphemeBreakType.SpacingMark */) {
|
||
return false; // GB9a
|
||
}
|
||
if (breakTypeA === 1 /* GraphemeBreakType.Prepend */) {
|
||
return false; // GB9b
|
||
}
|
||
// Do not break within emoji modifier sequences or emoji zwj sequences.
|
||
// GB11 \p{Extended_Pictographic} Extend* ZWJ × \p{Extended_Pictographic}
|
||
if (breakTypeA === 13 /* GraphemeBreakType.ZWJ */ && breakTypeB === 14 /* GraphemeBreakType.Extended_Pictographic */) {
|
||
// Note: we are not implementing the rule entirely here to avoid introducing states
|
||
return false; // GB11
|
||
}
|
||
// GB12 sot (RI RI)* RI × RI
|
||
// GB13 [^RI] (RI RI)* RI × RI
|
||
if (breakTypeA === 6 /* GraphemeBreakType.Regional_Indicator */ && breakTypeB === 6 /* GraphemeBreakType.Regional_Indicator */) {
|
||
// Note: we are not implementing the rule entirely here to avoid introducing states
|
||
return false; // GB12 & GB13
|
||
}
|
||
// GB999 Any ÷ Any
|
||
return true;
|
||
}
|
||
class GraphemeBreakTree {
|
||
static { this._INSTANCE = null; }
|
||
static getInstance() {
|
||
if (!GraphemeBreakTree._INSTANCE) {
|
||
GraphemeBreakTree._INSTANCE = new GraphemeBreakTree();
|
||
}
|
||
return GraphemeBreakTree._INSTANCE;
|
||
}
|
||
constructor() {
|
||
this._data = getGraphemeBreakRawData();
|
||
}
|
||
getGraphemeBreakType(codePoint) {
|
||
// !!! Let's make 7bit ASCII a bit faster: 0..31
|
||
if (codePoint < 32) {
|
||
if (codePoint === 10 /* CharCode.LineFeed */) {
|
||
return 3 /* GraphemeBreakType.LF */;
|
||
}
|
||
if (codePoint === 13 /* CharCode.CarriageReturn */) {
|
||
return 2 /* GraphemeBreakType.CR */;
|
||
}
|
||
return 4 /* GraphemeBreakType.Control */;
|
||
}
|
||
// !!! Let's make 7bit ASCII a bit faster: 32..126
|
||
if (codePoint < 127) {
|
||
return 0 /* GraphemeBreakType.Other */;
|
||
}
|
||
const data = this._data;
|
||
const nodeCount = data.length / 3;
|
||
let nodeIndex = 1;
|
||
while (nodeIndex <= nodeCount) {
|
||
if (codePoint < data[3 * nodeIndex]) {
|
||
// go left
|
||
nodeIndex = 2 * nodeIndex;
|
||
}
|
||
else if (codePoint > data[3 * nodeIndex + 1]) {
|
||
// go right
|
||
nodeIndex = 2 * nodeIndex + 1;
|
||
}
|
||
else {
|
||
// hit
|
||
return data[3 * nodeIndex + 2];
|
||
}
|
||
}
|
||
return 0 /* GraphemeBreakType.Other */;
|
||
}
|
||
}
|
||
function getGraphemeBreakRawData() {
|
||
// generated using https://github.com/alexdima/unicode-utils/blob/main/grapheme-break.js
|
||
return JSON.parse('[0,0,0,51229,51255,12,44061,44087,12,127462,127487,6,7083,7085,5,47645,47671,12,54813,54839,12,128678,128678,14,3270,3270,5,9919,9923,14,45853,45879,12,49437,49463,12,53021,53047,12,71216,71218,7,128398,128399,14,129360,129374,14,2519,2519,5,4448,4519,9,9742,9742,14,12336,12336,14,44957,44983,12,46749,46775,12,48541,48567,12,50333,50359,12,52125,52151,12,53917,53943,12,69888,69890,5,73018,73018,5,127990,127990,14,128558,128559,14,128759,128760,14,129653,129655,14,2027,2035,5,2891,2892,7,3761,3761,5,6683,6683,5,8293,8293,4,9825,9826,14,9999,9999,14,43452,43453,5,44509,44535,12,45405,45431,12,46301,46327,12,47197,47223,12,48093,48119,12,48989,49015,12,49885,49911,12,50781,50807,12,51677,51703,12,52573,52599,12,53469,53495,12,54365,54391,12,65279,65279,4,70471,70472,7,72145,72147,7,119173,119179,5,127799,127818,14,128240,128244,14,128512,128512,14,128652,128652,14,128721,128722,14,129292,129292,14,129445,129450,14,129734,129743,14,1476,1477,5,2366,2368,7,2750,2752,7,3076,3076,5,3415,3415,5,4141,4144,5,6109,6109,5,6964,6964,5,7394,7400,5,9197,9198,14,9770,9770,14,9877,9877,14,9968,9969,14,10084,10084,14,43052,43052,5,43713,43713,5,44285,44311,12,44733,44759,12,45181,45207,12,45629,45655,12,46077,46103,12,46525,46551,12,46973,46999,12,47421,47447,12,47869,47895,12,48317,48343,12,48765,48791,12,49213,49239,12,49661,49687,12,50109,50135,12,50557,50583,12,51005,51031,12,51453,51479,12,51901,51927,12,52349,52375,12,52797,52823,12,53245,53271,12,53693,53719,12,54141,54167,12,54589,54615,12,55037,55063,12,69506,69509,5,70191,70193,5,70841,70841,7,71463,71467,5,72330,72342,5,94031,94031,5,123628,123631,5,127763,127765,14,127941,127941,14,128043,128062,14,128302,128317,14,128465,128467,14,128539,128539,14,128640,128640,14,128662,128662,14,128703,128703,14,128745,128745,14,129004,129007,14,129329,129330,14,129402,129402,14,129483,129483,14,129686,129704,14,130048,131069,14,173,173,4,1757,1757,1,2200,2207,5,2434,2435,7,2631,2632,5,2817,2817,5,3008,3008,5,3201,3201,5,3387,3388,5,3542,3542,5,3902,3903,7,4190,4192,5,6002,6003,5,6439,6440,5,6765,6770,7,7019,7027,5,7154,7155,7,8205,8205,13,8505,8505,14,9654,9654,14,9757,9757,14,9792,9792,14,9852,9853,14,9890,9894,14,9937,9937,14,9981,9981,14,10035,10036,14,11035,11036,14,42654,42655,5,43346,43347,7,43587,43587,5,44006,44007,7,44173,44199,12,44397,44423,12,44621,44647,12,44845,44871,12,45069,45095,12,45293,45319,12,45517,45543,12,45741,45767,12,45965,45991,12,46189,46215,12,46413,46439,12,46637,46663,12,46861,46887,12,47085,47111,12,47309,47335,12,47533,47559,12,47757,47783,12,47981,48007,12,48205,48231,12,48429,48455,12,48653,48679,12,48877,48903,12,49101,49127,12,49325,49351,12,49549,49575,12,49773,49799,12,49997,50023,12,50221,50247,12,50445,50471,12,50669,50695,12,50893,50919,12,51117,51143,12,51341,51367,12,51565,51591,12,51789,51815,12,52013,52039,12,52237,52263,12,52461,52487,12,52685,52711,12,52909,52935,12,53133,53159,12,53357,53383,12,53581,53607,12,53805,53831,12,54029,54055,12,54253,54279,12,54477,54503,12,54701,54727,12,54925,54951,12,55149,55175,12,68101,68102,5,69762,69762,7,70067,70069,7,70371,70378,5,70720,70721,7,71087,71087,5,71341,71341,5,71995,71996,5,72249,72249,7,72850,72871,5,73109,73109,5,118576,118598,5,121505,121519,5,127245,127247,14,127568,127569,14,127777,127777,14,127872,127891,14,127956,127967,14,128015,128016,14,128110,128172,14,128259,128259,14,128367,128368,14,128424,128424,14,128488,128488,14,128530,128532,14,128550,128551,14,128566,128566,14,128647,128647,14,128656,128656,14,128667,128673,14,128691,128693,14,128715,128715,14,128728,128732,14,128752,128752,14,128765,128767,14,129096,129103,14,129311,129311,14,129344,129349,14,129394,129394,14,129413,129425,14,129466,129471,14,129511,129535,14,129664,129666,14,129719,129722,14,129760,129767,14,917536,917631,5,13,13,2,1160,1161,5,1564,1564,4,1807,1807,1,2085,2087,5,2307,2307,7,2382,2383,7,2497,2500,5,2563,2563,7,2677,2677,5,2763,2764,7,2879,2879,5,2914,2915,5,3021,3021,5,3142,3144,5,3263,3263,5,3285,3286,5,3398,3400,7,3530,3530,5,3633,3633,5,3864,3865,5,3974,3975,5,4155,4156,7,4229,4230,5,5909,5909,7,6078,6085,7,6277,6278,5,6451,6456,7,6744,6750,5,6846,6846,5,6972,6972,5,7074,7077,5,7146,7148,7,7222,7223,5,7416,7417,5,8234,8238,4,8417,8417,5,9000,9000,14,9203,9203,14,9730,9731,14,9748,9749,14,9762,9763,14,9776,9783,14,9800,9811,14,9831,9831,14,9872,9873,14,9882,9882,14,9900,9903,14,9929,9933,14,9941,9960,14,9974,9974,14,9989,9989,14,10006,10006,14,10062,10062,14,10160,10160,14,11647,11647,5,12953,12953,14,43019,43019,5,43232,43249,5,43443,43443,5,43567,43568,7,43696,43696,5,43765,43765,7,44013,44013,5,44117,44143,12,44229,44255,12,44341,44367,12,44453,44479,12,44565,44591,12,44677,44703,12,44789,44815,12,44901,44927,12,45013,45039,12,45125,45151,12,45237,45263,12,45349,45375,12,45461,45487,12,45573,45599,12,45685,45711,12,45797,45823,12,45909,45935,12,46021,46047,12,46133,46159,12,46245,46271,12,46357,46383,12,46469,46495,12,46581,46607,12,46693,46719,12,46805,46831,12,46917,46943,12,47029,47055,12,47141,47167,12,47253,47279,12,47365,47391,12,47477,47503,12,47589,47615,12,47701,47727,12,47813,47839,12,47925,47951,12,48037,48063,12,48149,48175,12,48261,48287,12,48373,48399,12,48485,48511,12,48597,48623,12,48709,48735,12,48821,48847,12,48933,48959,12,49045,49071,12,49157,49183,12,49269,49295,12,49381,49407,12,49493,49519,12,49605,49631,12,49717,49743,12,49829,49855,12,49941,49967,12,50053,50079,12,50165,50191,12,50277,50303,12,50389,50415,12,50501,50527,12,50613,50639,12,50725,50751,12,50837,50863,12,50949,50975,12,51061,51087,12,51173,51199,12,51285,51311,12,51397,51423,12,51509,51535,12,51621,51647,12,51733,51759,12,51845,51871,12,51957,51983,12,52069,52095,12,52181,52207,12,52293,52319,12,52405,52431,12,52517,52543,12,52629,52655,12,52741,52767,12,52853,52879,12,52965,52991,12,53077,53103,12,53189,53215,12,53301,53327,12,53413,53439,12,53525,53551,12,53637,53663,12,53749,53775,12,53861,53887,12,53973,53999,12,54085,54111,12,54197,54223,12,54309,54335,12,54421,54447,12,54533,54559,12,54645,54671,12,54757,54783,12,54869,54895,12,54981,55007,12,55093,55119,12,55243,55291,10,66045,66045,5,68325,68326,5,69688,69702,5,69817,69818,5,69957,69958,7,70089,70092,5,70198,70199,5,70462,70462,5,70502,70508,5,70750,70750,5,70846,70846,7,71100,71101,5,71230,71230,7,71351,71351,5,71737,71738,5,72000,72000,7,72160,72160,5,72273,72278,5,72752,72758,5,72882,72883,5,73031,73031,5,73461,73462,7,94192,94193,7,119149,119149,7,121403,121452,5,122915,122916,5,126980,126980,14,127358,127359,14,127535,127535,14,127759,127759,14,127771,127771,14,127792,127793,14,127825,127867,14,127897,127899,14,127945,127945,14,127985,127986,14,128000,128007,14,128021,128021,14,128066,128100,14,128184,128235,14,128249,128252,14,128266,128276,14,128335,128335,14,128379,128390,14,128407,128419,14,128444,128444,14,128481,128481,14,128499,128499,14,128526,128526,14,128536,128536,14,128543,128543,14,128556,128556,14,128564,128564,14,128577,128580,14,128643,128645,14,128649,128649,14,128654,128654,14,128660,128660,14,128664,128664,14,128675,128675,14,128686,128689,14,128695,128696,14,128705,128709,14,128717,128719,14,128725,128725,14,128736,128741,14,128747,128748,14,128755,128755,14,128762,128762,14,128981,128991,14,129009,129023,14,129160,129167,14,129296,129304,14,129320,129327,14,129340,129342,14,129356,129356,14,129388,129392,14,129399,129400,14,129404,129407,14,129432,129442,14,129454,129455,14,129473,129474,14,129485,129487,14,129648,129651,14,129659,129660,14,129671,129679,14,129709,129711,14,129728,129730,14,129751,129753,14,129776,129782,14,917505,917505,4,917760,917999,5,10,10,3,127,159,4,768,879,5,1471,1471,5,1536,1541,1,1648,1648,5,1767,1768,5,1840,1866,5,2070,2073,5,2137,2139,5,2274,2274,1,2363,2363,7,2377,2380,7,2402,2403,5,2494,2494,5,2507,2508,7,2558,2558,5,2622,2624,7,2641,2641,5,2691,2691,7,2759,2760,5,2786,2787,5,2876,2876,5,2881,2884,5,2901,2902,5,3006,3006,5,3014,3016,7,3072,3072,5,3134,3136,5,3157,3158,5,3260,3260,5,3266,3266,5,3274,3275,7,3328,3329,5,3391,3392,7,3405,3405,5,3457,3457,5,3536,3537,7,3551,3551,5,3636,3642,5,3764,3772,5,3895,3895,5,3967,3967,7,3993,4028,5,4146,4151,5,4182,4183,7,4226,4226,5,4253,4253,5,4957,4959,5,5940,5940,7,6070,6070,7,6087,6088,7,6158,6158,4,6432,6434,5,6448,6449,7,6679,6680,5,6742,6742,5,6754,6754,5,6783,6783,5,6912,6915,5,6966,6970,5,6978,6978,5,7042,7042,7,7080,7081,5,7143,7143,7,7150,7150,7,7212,7219,5,7380,7392,5,7412,7412,5,8203,8203,4,8232,8232,4,8265,8265,14,8400,8412,5,8421,8432,5,8617,8618,14,9167,9167,14,9200,9200,14,9410,9410,14,9723,9726,14,9733,9733,14,9745,9745,14,9752,9752,14,9760,9760,14,9766,9766,14,9774,9774,14,9786,9786,14,9794,9794,14,9823,9823,14,9828,9828,14,9833,9850,14,9855,9855,14,9875,9875,14,9880,9880,14,9885,9887,14,9896,9897,14,9906,9916,14,9926,9927,14,9935,9935,14,9939,9939,14,9962,9962,14,9972,9972,14,9978,9978,14,9986,9986,14,9997,9997,14,10002,10002,14,10017,10017,14,10055,10055,14,10071,10071,14,10133,10135,14,10548,10549,14,11093,11093,14,12330,12333,5,12441,12442,5,42608,42610,5,43010,43010,5,43045,43046,5,43188,43203,7,43302,43309,5,43392,43394,5,43446,43449,5,43493,43493,5,43571,43572,7,43597,43597,7,43703,43704,5,43756,43757,5,44003,44004,7,44009,44010,7,44033,44059,12,44089,44115,12,44145,44171,12,44201,44227,12,44257,44283,12,44313,44339,12,44369,44395,12,44425,44451,12,44481,44507,12,44537,44563,12,44593,44619,12,44649,44675,12,44705,44731,12,44761,44787,12,44817,44843,12,44873,44899,12,44929,44955,12,44985,45011,12,45041,45067,12,45097,45123,12,45153,45179,12,45209,45235,12,45265,45291,12,45321,45347,12,45377,45403,12,45433,45459,12,45489,45515,12,45545,45571,12,45601,45627,12,45657,45683,12,45713,45739,12,45769,45795,12,45825,45851,12,45881,45907,12,45937,45963,12,45993,46019,12,46049,46075,12,46105,46131,12,46161,46187,12,46217,46243,12,46273,46299,12,46329,46355,12,46385,46411,12,46441,46467,12,46497,46523,12,46553,46579,12,46609,46635,12,46665,46691,12,46721,46747,12,46777,46803,12,46833,46859,12,46889,46915,12,46945,46971,12,47001,47027,12,47057,47083,12,47113,47139,12,47169,47195,12,47225,47251,12,47281,47307,12,47337,47363,12,47393,47419,12,47449,47475,12,47505,47531,12,47561,47587,12,47617,47643,12,47673,47699,12,47729,47755,12,47785,47811,12,47841,47867,12,47897,47923,12,47953,47979,12,48009,48035,12,48065,48091,12,48121,48147,12,48177,48203,12,48233,48259,12,48289,48315,12,48345,48371,12,48401,48427,12,48457,48483,12,48513,48539,12,48569,48595,12,48625,48651,12,48681,48707,12,48737,48763,12,48793,48819,12,48849,48875,12,48905,48931,12,48961,48987,12,49017,49043,12,49073,49099,12,49129,49155,12,49185,49211,12,49241,49267,12,49297,49323,12,49353,49379,12,49409,49435,12,49465,49491,12,49521,49547,12,49577,49603,12,49633,49659,12,49689,49715,12,49745,49771,12,49801,49827,12,49857,49883,12,49913,49939,12,49969,49995,12,50025,50051,12,50081,50107,12,50137,50163,12,50193,50219,12,50249,50275,12,50305,50331,12,50361,50387,12,50417,50443,12,50473,50499,12,50529,50555,12,50585,50611,12,50641,50667,12,50697,50723,12,50753,50779,12,50809,50835,12,50865,50891,12,50921,50947,12,50977,51003,12,51033,51059,12,51089,51115,12,51145,51171,12,51201,51227,12,51257,51283,12,51313,51339,12,51369,51395,12,51425,51451,12,51481,51507,12,51537,51563,12,51593,51619,12,51649,51675,12,51705,51731,12,51761,51787,12,51817,51843,12,51873,51899,12,51929,51955,12,51985,52011,12,52041,52067,12,52097,52123,12,52153,52179,12,52209,52235,12,52265,52291,12,52321,52347,12,52377,52403,12,52433,52459,12,52489,52515,12,52545,52571,12,52601,52627,12,52657,52683,12,52713,52739,12,52769,52795,12,52825,52851,12,52881,52907,12,52937,52963,12,52993,53019,12,53049,53075,12,53105,53131,12,53161,53187,12,53217,53243,12,53273,53299,12,53329,53355,12,53385,53411,12,53441,53467,12,53497,53523,12,53553,53579,12,53609,53635,12,53665,53691,12,53721,53747,12,53777,53803,12,53833,53859,12,53889,53915,12,53945,53971,12,54001,54027,12,54057,54083,12,54113,54139,12,54169,54195,12,54225,54251,12,54281,54307,12,54337,54363,12,54393,54419,12,54449,54475,12,54505,54531,12,54561,54587,12,54617,54643,12,54673,54699,12,54729,54755,12,54785,54811,12,54841,54867,12,54897,54923,12,54953,54979,12,55009,55035,12,55065,55091,12,55121,55147,12,55177,55203,12,65024,65039,5,65520,65528,4,66422,66426,5,68152,68154,5,69291,69292,5,69633,69633,5,69747,69748,5,69811,69814,5,69826,69826,5,69932,69932,7,70016,70017,5,70079,70080,7,70095,70095,5,70196,70196,5,70367,70367,5,70402,70403,7,70464,70464,5,70487,70487,5,70709,70711,7,70725,70725,7,70833,70834,7,70843,70844,7,70849,70849,7,71090,71093,5,71103,71104,5,71227,71228,7,71339,71339,5,71344,71349,5,71458,71461,5,71727,71735,5,71985,71989,7,71998,71998,5,72002,72002,7,72154,72155,5,72193,72202,5,72251,72254,5,72281,72283,5,72344,72345,5,72766,72766,7,72874,72880,5,72885,72886,5,73023,73029,5,73104,73105,5,73111,73111,5,92912,92916,5,94095,94098,5,113824,113827,4,119142,119142,7,119155,119162,4,119362,119364,5,121476,121476,5,122888,122904,5,123184,123190,5,125252,125258,5,127183,127183,14,127340,127343,14,127377,127386,14,127491,127503,14,127548,127551,14,127744,127756,14,127761,127761,14,127769,127769,14,127773,127774,14,127780,127788,14,127796,127797,14,127820,127823,14,127869,127869,14,127894,127895,14,127902,127903,14,127943,127943,14,127947,127950,14,127972,127972,14,127988,127988,14,127992,127994,14,128009,128011,14,128019,128019,14,128023,128041,14,128064,128064,14,128102,128107,14,128174,128181,14,128238,128238,14,128246,128247,14,128254,128254,14,128264,128264,14,128278,128299,14,128329,128330,14,128348,128359,14,128371,128377,14,128392,128393,14,128401,128404,14,128421,128421,14,128433,128434,14,128450,128452,14,128476,128478,14,128483,128483,14,128495,128495,14,128506,128506,14,128519,128520,14,128528,128528,14,128534,128534,14,128538,128538,14,128540,128542,14,128544,128549,14,128552,128555,14,128557,128557,14,128560,128563,14,128565,128565,14,128567,128576,14,128581,128591,14,128641,128642,14,128646,128646,14,128648,128648,14,128650,128651,14,128653,128653,14,128655,128655,14,128657,128659,14,128661,128661,14,128663,128663,14,128665,128666,14,128674,128674,14,128676,128677,14,128679,128685,14,128690,128690,14,128694,128694,14,128697,128702,14,128704,128704,14,128710,128714,14,128716,128716,14,128720,128720,14,128723,128724,14,128726,128727,14,128733,128735,14,128742,128744,14,128746,128746,14,128749,128751,14,128753,128754,14,128756,128758,14,128761,128761,14,128763,128764,14,128884,128895,14,128992,129003,14,129008,129008,14,129036,129039,14,129114,129119,14,129198,129279,14,129293,129295,14,129305,129310,14,129312,129319,14,129328,129328,14,129331,129338,14,129343,129343,14,129351,129355,14,129357,129359,14,129375,129387,14,129393,129393,14,129395,129398,14,129401,129401,14,129403,129403,14,129408,129412,14,129426,129431,14,129443,129444,14,129451,129453,14,129456,129465,14,129472,129472,14,129475,129482,14,129484,129484,14,129488,129510,14,129536,129647,14,129652,129652,14,129656,129658,14,129661,129663,14,129667,129670,14,129680,129685,14,129705,129708,14,129712,129718,14,129723,129727,14,129731,129733,14,129744,129750,14,129754,129759,14,129768,129775,14,129783,129791,14,917504,917504,4,917506,917535,4,917632,917759,4,918000,921599,4,0,9,4,11,12,4,14,31,4,169,169,14,174,174,14,1155,1159,5,1425,1469,5,1473,1474,5,1479,1479,5,1552,1562,5,1611,1631,5,1750,1756,5,1759,1764,5,1770,1773,5,1809,1809,5,1958,1968,5,2045,2045,5,2075,2083,5,2089,2093,5,2192,2193,1,2250,2273,5,2275,2306,5,2362,2362,5,2364,2364,5,2369,2376,5,2381,2381,5,2385,2391,5,2433,2433,5,2492,2492,5,2495,2496,7,2503,2504,7,2509,2509,5,2530,2531,5,2561,2562,5,2620,2620,5,2625,2626,5,2635,2637,5,2672,2673,5,2689,2690,5,2748,2748,5,2753,2757,5,2761,2761,7,2765,2765,5,2810,2815,5,2818,2819,7,2878,2878,5,2880,2880,7,2887,2888,7,2893,2893,5,2903,2903,5,2946,2946,5,3007,3007,7,3009,3010,7,3018,3020,7,3031,3031,5,3073,3075,7,3132,3132,5,3137,3140,7,3146,3149,5,3170,3171,5,3202,3203,7,3262,3262,7,3264,3265,7,3267,3268,7,3271,3272,7,3276,3277,5,3298,3299,5,3330,3331,7,3390,3390,5,3393,3396,5,3402,3404,7,3406,3406,1,3426,3427,5,3458,3459,7,3535,3535,5,3538,3540,5,3544,3550,7,3570,3571,7,3635,3635,7,3655,3662,5,3763,3763,7,3784,3789,5,3893,3893,5,3897,3897,5,3953,3966,5,3968,3972,5,3981,3991,5,4038,4038,5,4145,4145,7,4153,4154,5,4157,4158,5,4184,4185,5,4209,4212,5,4228,4228,7,4237,4237,5,4352,4447,8,4520,4607,10,5906,5908,5,5938,5939,5,5970,5971,5,6068,6069,5,6071,6077,5,6086,6086,5,6089,6099,5,6155,6157,5,6159,6159,5,6313,6313,5,6435,6438,7,6441,6443,7,6450,6450,5,6457,6459,5,6681,6682,7,6741,6741,7,6743,6743,7,6752,6752,5,6757,6764,5,6771,6780,5,6832,6845,5,6847,6862,5,6916,6916,7,6965,6965,5,6971,6971,7,6973,6977,7,6979,6980,7,7040,7041,5,7073,7073,7,7078,7079,7,7082,7082,7,7142,7142,5,7144,7145,5,7149,7149,5,7151,7153,5,7204,7211,7,7220,7221,7,7376,7378,5,7393,7393,7,7405,7405,5,7415,7415,7,7616,7679,5,8204,8204,5,8206,8207,4,8233,8233,4,8252,8252,14,8288,8292,4,8294,8303,4,8413,8416,5,8418,8420,5,8482,8482,14,8596,8601,14,8986,8987,14,9096,9096,14,9193,9196,14,9199,9199,14,9201,9202,14,9208,9210,14,9642,9643,14,9664,9664,14,9728,9729,14,9732,9732,14,9735,9741,14,9743,9744,14,9746,9746,14,9750,9751,14,9753,9756,14,9758,9759,14,9761,9761,14,9764,9765,14,9767,9769,14,9771,9773,14,9775,9775,14,9784,9785,14,9787,9791,14,9793,9793,14,9795,9799,14,9812,9822,14,9824,9824,14,9827,9827,14,9829,9830,14,9832,9832,14,9851,9851,14,9854,9854,14,9856,9861,14,9874,9874,14,9876,9876,14,9878,9879,14,9881,9881,14,9883,9884,14,9888,9889,14,9895,9895,14,9898,9899,14,9904,9905,14,9917,9918,14,9924,9925,14,9928,9928,14,9934,9934,14,9936,9936,14,9938,9938,14,9940,9940,14,9961,9961,14,9963,9967,14,9970,9971,14,9973,9973,14,9975,9977,14,9979,9980,14,9982,9985,14,9987,9988,14,9992,9996,14,9998,9998,14,10000,10001,14,10004,10004,14,10013,10013,14,10024,10024,14,10052,10052,14,10060,10060,14,10067,10069,14,10083,10083,14,10085,10087,14,10145,10145,14,10175,10175,14,11013,11015,14,11088,11088,14,11503,11505,5,11744,11775,5,12334,12335,5,12349,12349,14,12951,12951,14,42607,42607,5,42612,42621,5,42736,42737,5,43014,43014,5,43043,43044,7,43047,43047,7,43136,43137,7,43204,43205,5,43263,43263,5,43335,43345,5,43360,43388,8,43395,43395,7,43444,43445,7,43450,43451,7,43454,43456,7,43561,43566,5,43569,43570,5,43573,43574,5,43596,43596,5,43644,43644,5,43698,43700,5,43710,43711,5,43755,43755,7,43758,43759,7,43766,43766,5,44005,44005,5,44008,44008,5,44012,44012,7,44032,44032,11,44060,44060,11,44088,44088,11,44116,44116,11,44144,44144,11,44172,44172,11,44200,44200,11,44228,44228,11,44256,44256,11,44284,44284,11,44312,44312,11,44340,44340,11,44368,44368,11,44396,44396,11,44424,44424,11,44452,44452,11,44480,44480,11,44508,44508,11,44536,44536,11,44564,44564,11,44592,44592,11,44620,44620,11,44648,44648,11,44676,44676,11,44704,44704,11,44732,44732,11,44760,44760,11,44788,44788,11,44816,44816,11,44844,44844,11,44872,44872,11,44900,44900,11,44928,44928,11,44956,44956,11,44984,44984,11,45012,45012,11,45040,45040,11,45068,45068,11,45096,45096,11,45124,45124,11,45152,45152,11,45180,45180,11,45208,45208,11,45236,45236,11,45264,45264,11,45292,45292,11,45320,45320,11,45348,45348,11,45376,45376,11,45404,45404,11,45432,45432,11,45460,45460,11,45488,45488,11,45516,45516,11,45544,45544,11,45572,45572,11,45600,45600,11,45628,45628,11,45656,45656,11,45684,45684,11,45712,45712,11,45740,45740,11,45768,45768,11,45796,45796,11,45824,45824,11,45852,45852,11,45880,45880,11,45908,45908,11,45936,45936,11,45964,45964,11,45992,45992,11,46020,46020,11,46048,46048,11,46076,46076,11,46104,46104,11,46132,46132,11,46160,46160,11,46188,46188,11,46216,46216,11,46244,46244,11,46272,46272,11,46300,46300,11,46328,46328,11,46356,46356,11,46384,46384,11,46412,46412,11,46440,46440,11,46468,46468,11,46496,46496,11,46524,46524,11,46552,46552,11,46580,46580,11,46608,46608,11,46636,46636,11,46664,46664,11,46692,46692,11,46720,46720,11,46748,46748,11,46776,46776,11,46804,46804,11,46832,46832,11,46860,46860,11,46888,46888,11,46916,46916,11,46944,46944,11,46972,46972,11,47000,47000,11,47028,47028,11,47056,47056,11,47084,47084,11,47112,47112,11,47140,47140,11,47168,47168,11,47196,47196,11,47224,47224,11,47252,47252,11,47280,47280,11,47308,47308,11,47336,47336,11,47364,47364,11,47392,47392,11,47420,47420,11,47448,47448,11,47476,47476,11,47504,47504,11,47532,47532,11,47560,47560,11,47588,47588,11,47616,47616,11,47644,47644,11,47672,47672,11,47700,47700,11,47728,47728,11,47756,47756,11,47784,47784,11,47812,47812,11,47840,47840,11,47868,47868,11,47896,47896,11,47924,47924,11,47952,47952,11,47980,47980,11,48008,48008,11,48036,48036,11,48064,48064,11,48092,48092,11,48120,48120,11,48148,48148,11,48176,48176,11,48204,48204,11,48232,48232,11,48260,48260,11,48288,48288,11,48316,48316,11,48344,48344,11,48372,48372,11,48400,48400,11,48428,48428,11,48456,48456,11,48484,48484,11,48512,48512,11,48540,48540,11,48568,48568,11,48596,48596,11,48624,48624,11,48652,48652,11,48680,48680,11,48708,48708,11,48736,48736,11,48764,48764,11,48792,48792,11,48820,48820,11,48848,48848,11,48876,48876,11,48904,48904,11,48932,48932,11,48960,48960,11,48988,48988,11,49016,49016,11,49044,49044,11,49072,49072,11,49100,49100,11,49128,49128,11,49156,49156,11,49184,49184,11,49212,49212,11,49240,49240,11,49268,49268,11,49296,49296,11,49324,49324,11,49352,49352,11,49380,49380,11,49408,49408,11,49436,49436,11,49464,49464,11,49492,49492,11,49520,49520,11,49548,49548,11,49576,49576,11,49604,49604,11,49632,49632,11,49660,49660,11,49688,49688,11,49716,49716,11,49744,49744,11,49772,49772,11,49800,49800,11,49828,49828,11,49856,49856,11,49884,49884,11,49912,49912,11,49940,49940,11,49968,49968,11,49996,49996,11,50024,50024,11,50052,50052,11,50080,50080,11,50108,50108,11,50136,50136,11,50164,50164,11,50192,50192,11,50220,50220,11,50248,50248,11,50276,50276,11,50304,50304,11,50332,50332,11,50360,50360,11,50388,50388,11,50416,50416,11,50444,50444,11,50472,50472,11,50500,50500,11,50528,50528,11,50556,50556,11,50584,50584,11,50612,50612,11,50640,50640,11,50668,50668,11,50696,50696,11,50724,50724,11,50752,50752,11,50780,50780,11,50808,50808,11,50836,50836,11,50864,50864,11,50892,50892,11,50920,50920,11,50948,50948,11,50976,50976,11,51004,51004,11,51032,51032,11,51060,51060,11,51088,51088,11,51116,51116,11,51144,51144,11,51172,51172,11,51200,51200,11,51228,51228,11,51256,51256,11,51284,51284,11,51312,51312,11,51340,51340,11,51368,51368,11,51396,51396,11,51424,51424,11,51452,51452,11,51480,51480,11,51508,51508,11,51536,51536,11,51564,51564,11,51592,51592,11,51620,51620,11,51648,51648,11,51676,51676,11,51704,51704,11,51732,51732,11,51760,51760,11,51788,51788,11,51816,51816,11,51844,51844,11,51872,51872,11,51900,51900,11,51928,51928,11,51956,51956,11,51984,51984,11,52012,52012,11,52040,52040,11,52068,52068,11,52096,52096,11,52124,52124,11,52152,52152,11,52180,52180,11,52208,52208,11,52236,52236,11,52264,52264,11,52292,52292,11,52320,52320,11,52348,52348,11,52376,52376,11,52404,52404,11,52432,52432,11,52460,52460,11,52488,52488,11,52516,52516,11,52544,52544,11,52572,52572,11,52600,52600,11,52628,52628,11,52656,52656,11,52684,52684,11,52712,52712,11,52740,52740,11,52768,52768,11,52796,52796,11,52824,52824,11,52852,52852,11,52880,52880,11,52908,52908,11,52936,52936,11,52964,52964,11,52992,52992,11,53020,53020,11,53048,53048,11,53076,53076,11,53104,53104,11,53132,53132,11,53160,53160,11,53188,53188,11,53216,53216,11,53244,53244,11,53272,53272,11,53300,53300,11,53328,53328,11,53356,53356,11,53384,53384,11,53412,53412,11,53440,53440,11,53468,53468,11,53496,53496,11,53524,53524,11,53552,53552,11,53580,53580,11,53608,53608,11,53636,53636,11,53664,53664,11,53692,53692,11,53720,53720,11,53748,53748,11,53776,53776,11,53804,53804,11,53832,53832,11,53860,53860,11,53888,53888,11,53916,53916,11,53944,53944,11,53972,53972,11,54000,54000,11,54028,54028,11,54056,54056,11,54084,54084,11,54112,54112,11,54140,54140,11,54168,54168,11,54196,54196,11,54224,54224,11,54252,54252,11,54280,54280,11,54308,54308,11,54336,54336,11,54364,54364,11,54392,54392,11,54420,54420,11,54448,54448,11,54476,54476,11,54504,54504,11,54532,54532,11,54560,54560,11,54588,54588,11,54616,54616,11,54644,54644,11,54672,54672,11,54700,54700,11,54728,54728,11,54756,54756,11,54784,54784,11,54812,54812,11,54840,54840,11,54868,54868,11,54896,54896,11,54924,54924,11,54952,54952,11,54980,54980,11,55008,55008,11,55036,55036,11,55064,55064,11,55092,55092,11,55120,55120,11,55148,55148,11,55176,55176,11,55216,55238,9,64286,64286,5,65056,65071,5,65438,65439,5,65529,65531,4,66272,66272,5,68097,68099,5,68108,68111,5,68159,68159,5,68900,68903,5,69446,69456,5,69632,69632,7,69634,69634,7,69744,69744,5,69759,69761,5,69808,69810,7,69815,69816,7,69821,69821,1,69837,69837,1,69927,69931,5,69933,69940,5,70003,70003,5,70018,70018,7,70070,70078,5,70082,70083,1,70094,70094,7,70188,70190,7,70194,70195,7,70197,70197,7,70206,70206,5,70368,70370,7,70400,70401,5,70459,70460,5,70463,70463,7,70465,70468,7,70475,70477,7,70498,70499,7,70512,70516,5,70712,70719,5,70722,70724,5,70726,70726,5,70832,70832,5,70835,70840,5,70842,70842,5,70845,70845,5,70847,70848,5,70850,70851,5,71088,71089,7,71096,71099,7,71102,71102,7,71132,71133,5,71219,71226,5,71229,71229,5,71231,71232,5,71340,71340,7,71342,71343,7,71350,71350,7,71453,71455,5,71462,71462,7,71724,71726,7,71736,71736,7,71984,71984,5,71991,71992,7,71997,71997,7,71999,71999,1,72001,72001,1,72003,72003,5,72148,72151,5,72156,72159,7,72164,72164,7,72243,72248,5,72250,72250,1,72263,72263,5,72279,72280,7,72324,72329,1,72343,72343,7,72751,72751,7,72760,72765,5,72767,72767,5,72873,72873,7,72881,72881,7,72884,72884,7,73009,73014,5,73020,73021,5,73030,73030,1,73098,73102,7,73107,73108,7,73110,73110,7,73459,73460,5,78896,78904,4,92976,92982,5,94033,94087,7,94180,94180,5,113821,113822,5,118528,118573,5,119141,119141,5,119143,119145,5,119150,119154,5,119163,119170,5,119210,119213,5,121344,121398,5,121461,121461,5,121499,121503,5,122880,122886,5,122907,122913,5,122918,122922,5,123566,123566,5,125136,125142,5,126976,126979,14,126981,127182,14,127184,127231,14,127279,127279,14,127344,127345,14,127374,127374,14,127405,127461,14,127489,127490,14,127514,127514,14,127538,127546,14,127561,127567,14,127570,127743,14,127757,127758,14,127760,127760,14,127762,127762,14,127766,127768,14,127770,127770,14,127772,127772,14,127775,127776,14,127778,127779,14,127789,127791,14,127794,127795,14,127798,127798,14,127819,127819,14,127824,127824,14,127868,127868,14,127870,127871,14,127892,127893,14,127896,127896,14,127900,127901,14,127904,127940,14,127942,127942,14,127944,127944,14,127946,127946,14,127951,127955,14,127968,127971,14,127973,127984,14,127987,127987,14,127989,127989,14,127991,127991,14,127995,127999,5,128008,128008,14,128012,128014,14,128017,128018,14,128020,128020,14,128022,128022,14,128042,128042,14,128063,128063,14,128065,128065,14,128101,128101,14,128108,128109,14,128173,128173,14,128182,128183,14,128236,128237,14,128239,128239,14,128245,128245,14,128248,128248,14,128253,128253,14,128255,128258,14,128260,128263,14,128265,128265,14,128277,128277,14,128300,128301,14,128326,128328,14,128331,128334,14,128336,128347,14,128360,128366,14,128369,128370,14,128378,128378,14,128391,128391,14,128394,128397,14,128400,128400,14,128405,128406,14,128420,128420,14,128422,128423,14,128425,128432,14,128435,128443,14,128445,128449,14,128453,128464,14,128468,128475,14,128479,128480,14,128482,128482,14,128484,128487,14,128489,128494,14,128496,128498,14,128500,128505,14,128507,128511,14,128513,128518,14,128521,128525,14,128527,128527,14,128529,128529,14,128533,128533,14,128535,128535,14,128537,128537,14]');
|
||
}
|
||
//#endregion
|
||
/**
|
||
* Computes the offset after performing a left delete on the given string,
|
||
* while considering unicode grapheme/emoji rules.
|
||
*/
|
||
function getLeftDeleteOffset(offset, str) {
|
||
if (offset === 0) {
|
||
return 0;
|
||
}
|
||
// Try to delete emoji part.
|
||
const emojiOffset = getOffsetBeforeLastEmojiComponent(offset, str);
|
||
if (emojiOffset !== undefined) {
|
||
return emojiOffset;
|
||
}
|
||
// Otherwise, just skip a single code point.
|
||
const iterator = new CodePointIterator(str, offset);
|
||
iterator.prevCodePoint();
|
||
return iterator.offset;
|
||
}
|
||
function getOffsetBeforeLastEmojiComponent(initialOffset, str) {
|
||
// See https://www.unicode.org/reports/tr51/tr51-14.html#EBNF_and_Regex for the
|
||
// structure of emojis.
|
||
const iterator = new CodePointIterator(str, initialOffset);
|
||
let codePoint = iterator.prevCodePoint();
|
||
// Skip modifiers
|
||
while ((isEmojiModifier(codePoint) || codePoint === 65039 /* CodePoint.emojiVariantSelector */ || codePoint === 8419 /* CodePoint.enclosingKeyCap */)) {
|
||
if (iterator.offset === 0) {
|
||
// Cannot skip modifier, no preceding emoji base.
|
||
return undefined;
|
||
}
|
||
codePoint = iterator.prevCodePoint();
|
||
}
|
||
// Expect base emoji
|
||
if (!isEmojiImprecise(codePoint)) {
|
||
// Unexpected code point, not a valid emoji.
|
||
return undefined;
|
||
}
|
||
let resultOffset = iterator.offset;
|
||
if (resultOffset > 0) {
|
||
// Skip optional ZWJ code points that combine multiple emojis.
|
||
// In theory, we should check if that ZWJ actually combines multiple emojis
|
||
// to prevent deleting ZWJs in situations we didn't account for.
|
||
const optionalZwjCodePoint = iterator.prevCodePoint();
|
||
if (optionalZwjCodePoint === 8205 /* CodePoint.zwj */) {
|
||
resultOffset = iterator.offset;
|
||
}
|
||
}
|
||
return resultOffset;
|
||
}
|
||
function isEmojiModifier(codePoint) {
|
||
return 0x1F3FB <= codePoint && codePoint <= 0x1F3FF;
|
||
}
|
||
exports.noBreakWhitespace = '\xa0';
|
||
class AmbiguousCharacters {
|
||
static { this.ambiguousCharacterData = new lazy_1.Lazy(() => {
|
||
// Generated using https://github.com/hediet/vscode-unicode-data
|
||
// Stored as key1, value1, key2, value2, ...
|
||
return JSON.parse('{\"_common\":[8232,32,8233,32,5760,32,8192,32,8193,32,8194,32,8195,32,8196,32,8197,32,8198,32,8200,32,8201,32,8202,32,8287,32,8199,32,8239,32,2042,95,65101,95,65102,95,65103,95,8208,45,8209,45,8210,45,65112,45,1748,45,8259,45,727,45,8722,45,10134,45,11450,45,1549,44,1643,44,8218,44,184,44,42233,44,894,59,2307,58,2691,58,1417,58,1795,58,1796,58,5868,58,65072,58,6147,58,6153,58,8282,58,1475,58,760,58,42889,58,8758,58,720,58,42237,58,451,33,11601,33,660,63,577,63,2429,63,5038,63,42731,63,119149,46,8228,46,1793,46,1794,46,42510,46,68176,46,1632,46,1776,46,42232,46,1373,96,65287,96,8219,96,8242,96,1370,96,1523,96,8175,96,65344,96,900,96,8189,96,8125,96,8127,96,8190,96,697,96,884,96,712,96,714,96,715,96,756,96,699,96,701,96,700,96,702,96,42892,96,1497,96,2036,96,2037,96,5194,96,5836,96,94033,96,94034,96,65339,91,10088,40,10098,40,12308,40,64830,40,65341,93,10089,41,10099,41,12309,41,64831,41,10100,123,119060,123,10101,125,65342,94,8270,42,1645,42,8727,42,66335,42,5941,47,8257,47,8725,47,8260,47,9585,47,10187,47,10744,47,119354,47,12755,47,12339,47,11462,47,20031,47,12035,47,65340,92,65128,92,8726,92,10189,92,10741,92,10745,92,119311,92,119355,92,12756,92,20022,92,12034,92,42872,38,708,94,710,94,5869,43,10133,43,66203,43,8249,60,10094,60,706,60,119350,60,5176,60,5810,60,5120,61,11840,61,12448,61,42239,61,8250,62,10095,62,707,62,119351,62,5171,62,94015,62,8275,126,732,126,8128,126,8764,126,65372,124,65293,45,120784,50,120794,50,120804,50,120814,50,120824,50,130034,50,42842,50,423,50,1000,50,42564,50,5311,50,42735,50,119302,51,120785,51,120795,51,120805,51,120815,51,120825,51,130035,51,42923,51,540,51,439,51,42858,51,11468,51,1248,51,94011,51,71882,51,120786,52,120796,52,120806,52,120816,52,120826,52,130036,52,5070,52,71855,52,120787,53,120797,53,120807,53,120817,53,120827,53,130037,53,444,53,71867,53,120788,54,120798,54,120808,54,120818,54,120828,54,130038,54,11474,54,5102,54,71893,54,119314,55,120789,55,120799,55,120809,55,120819,55,120829,55,130039,55,66770,55,71878,55,2819,56,2538,56,2666,56,125131,56,120790,56,120800,56,120810,56,120820,56,120830,56,130040,56,547,56,546,56,66330,56,2663,57,2920,57,2541,57,3437,57,120791,57,120801,57,120811,57,120821,57,120831,57,130041,57,42862,57,11466,57,71884,57,71852,57,71894,57,9082,97,65345,97,119834,97,119886,97,119938,97,119990,97,120042,97,120094,97,120146,97,120198,97,120250,97,120302,97,120354,97,120406,97,120458,97,593,97,945,97,120514,97,120572,97,120630,97,120688,97,120746,97,65313,65,119808,65,119860,65,119912,65,119964,65,120016,65,120068,65,120120,65,120172,65,120224,65,120276,65,120328,65,120380,65,120432,65,913,65,120488,65,120546,65,120604,65,120662,65,120720,65,5034,65,5573,65,42222,65,94016,65,66208,65,119835,98,119887,98,119939,98,119991,98,120043,98,120095,98,120147,98,120199,98,120251,98,120303,98,120355,98,120407,98,120459,98,388,98,5071,98,5234,98,5551,98,65314,66,8492,66,119809,66,119861,66,119913,66,120017,66,120069,66,120121,66,120173,66,120225,66,120277,66,120329,66,120381,66,120433,66,42932,66,914,66,120489,66,120547,66,120605,66,120663,66,120721,66,5108,66,5623,66,42192,66,66178,66,66209,66,66305,66,65347,99,8573,99,119836,99,119888,99,119940,99,119992,99,120044,99,120096,99,120148,99,120200,99,120252,99,120304,99,120356,99,120408,99,120460,99,7428,99,1010,99,11429,99,43951,99,66621,99,128844,67,71922,67,71913,67,65315,67,8557,67,8450,67,8493,67,119810,67,119862,67,119914,67,119966,67,120018,67,120174,67,120226,67,120278,67,120330,67,120382,67,120434,67,1017,67,11428,67,5087,67,42202,67,66210,67,66306,67,66581,67,66844,67,8574,100,8518,100,119837,100,119889,100,119941,100,119993,100,120045,100,120097,100,120149,100,120201,100,120253,100,120305,100,120357,100,120409,100,120461,100,1281,100,5095,100,5231,100,42194,100,8558,68,8517,68,119811,68,119863,68,119915,68,119967,68,120019,68,120071,68,120123,68,120175,68,120227,68,120279,68,120331,68,120383,68,120435,68,5024,68,5598,68,5610,68,42195,68,8494,101,65349,101,8495,101,8519,101,119838,101,119890,101,119942,101,120046,101,120098,101,120150,101,120202,101,120254,101,120306,101,120358,101,120410,101,120462,101,43826,101,1213,101,8959,69,65317,69,8496,69,119812,69,119864,69,119916,69,120020,69,120072,69,120124,69,120176,69,120228,69,120280,69,120332,69,120384,69,120436,69,917,69,120492,69,120550,69,120608,69,120666,69,120724,69,11577,69,5036,69,42224,69,71846,69,71854,69,66182,69,119839,102,119891,102,119943,102,119995,102,120047,102,120099,102,120151,102,120203,102,120255,102,120307,102,120359,102,120411,102,120463,102,43829,102,42905,102,383,102,7837,102,1412,102,119315,70,8497,70,119813,70,119865,70,119917,70,120021,70,120073,70,120125,70,120177,70,120229,70,120281,70,120333,70,120385,70,120437,70,42904,70,988,70,120778,70,5556,70,42205,70,71874,70,71842,70,66183,70,66213,70,66853,70,65351,103,8458,103,119840,103,119892,103,119944,103,120048,103,120100,103,120152,103,120204,103,120256,103,120308,103,120360,103,120412,103,120464,103,609,103,7555,103,397,103,1409,103,119814,71,119866,71,119918,71,119970,71,120022,71,120074,71,120126,71,120178,71,120230,71,120282,71,120334,71,120386,71,120438,71,1292,71,5056,71,5107,71,42198,71,65352,104,8462,104,119841,104,119945,104,119997,104,120049,104,120101,104,120153,104,120205,104,120257,104,120309,104,120361,104,120413,104,120465,104,1211,104,1392,104,5058,104,65320,72,8459,72,8460,72,8461,72,119815,72,119867,72,119919,72,120023,72,120179,72,120231,72,120283,72,120335,72,120387,72,120439,72,919,72,120494,72,120552,72,120610,72,120668,72,120726,72,11406,72,5051,72,5500,72,42215,72,66255,72,731,105,9075,105,65353,105,8560,105,8505,105,8520,105,119842,105,119894,105,119946,105,119998,105,120050,105,120102,105,120154,105,120206,105,120258,105,120310,105,120362,105,120414,105,120466,105,120484,105,618,105,617,105,953,105,8126,105,890,105,120522,105,120580,105,120638,105,120696,105,120754,105,1110,105,42567,105,1231,105,43893,105,5029,105,71875,105,65354,106,8521,106,119843,106,119895,106,119947,106,119999,106,120051,106,120103,106,120155,106,120207,106,120259,106,120311,106,120363,106,120415,106,120467,106,1011,106,1112,106,65322,74,119817,74,119869,74,119921,74,119973,74,120025,74,120077,74,120129,74,120181,74,120233,74,120285,74,120337,74,120389,74,120441,74,42930,74,895,74,1032,74,5035,74,5261,74,42201,74,119844,107,119896,107,119948,107,120000,107,120052,107,120104,107,120156,107,120208,107,120260,107,120312,107,120364,107,120416,107,120468,107,8490,75,65323,75,119818,75,119870,75,119922,75,119974,75,120026,75,120078,75,120130,75,120182,75,120234,75,120286,75,120338,75,120390,75,120442,75,922,75,120497,75,120555,75,120613,75,120671,75,120729,75,11412,75,5094,75,5845,75,42199,75,66840,75,1472,108,8739,73,9213,73,65512,73,1633,108,1777,73,66336,108,125127,108,120783,73,120793,73,120803,73,120813,73,120823,73,130033,73,65321,73,8544,73,8464,73,8465,73,119816,73,119868,73,119920,73,120024,73,120128,73,120180,73,120232,73,120284,73,120336,73,120388,73,120440,73,65356,108,8572,73,8467,108,119845,108,119897,108,119949,108,120001,108,120053,108,120105,73,120157,73,120209,73,120261,73,120313,73,120365,73,120417,73,120469,73,448,73,120496,73,120554,73,120612,73,120670,73,120728,73,11410,73,1030,73,1216,73,1493,108,1503,108,1575,108,126464,108,126592,108,65166,108,65165,108,1994,108,11599,73,5825,73,42226,73,93992,73,66186,124,66313,124,119338,76,8556,76,8466,76,119819,76,119871,76,119923,76,120027,76,120079,76,120131,76,120183,76,120235,76,120287,76,120339,76,120391,76,120443,76,11472,76,5086,76,5290,76,42209,76,93974,76,71843,76,71858,76,66587,76,66854,76,65325,77,8559,77,8499,77,119820,77,119872,77,119924,77,120028,77,120080,77,120132,77,120184,77,120236,77,120288,77,120340,77,120392,77,120444,77,924,77,120499,77,120557,77,120615,77,120673,77,120731,77,1018,77,11416,77,5047,77,5616,77,5846,77,42207,77,66224,77,66321,77,119847,110,119899,110,119951,110,120003,110,120055,110,120107,110,120159,110,120211,110,120263,110,120315,110,120367,110,120419,110,120471,110,1400,110,1404,110,65326,78,8469,78,119821,78,119873,78,119925,78,119977,78,120029,78,120081,78,120185,78,120237,78,120289,78,120341,78,120393,78,120445,78,925,78,120500,78,120558,78,120616,78,120674,78,120732,78,11418,78,42208,78,66835,78,3074,111,3202,111,3330,111,3458,111,2406,111,2662,111,2790,111,3046,111,3174,111,3302,111,3430,111,3664,111,3792,111,4160,111,1637,111,1781,111,65359,111,8500,111,119848,111,119900,111,119952,111,120056,111,120108,111,120160,111,120212,111,120264,111,120316,111,120368,111,120420,111,120472,111,7439,111,7441,111,43837,111,959,111,120528,111,120586,111,120644,111,120702,111,120760,111,963,111,120532,111,120590,111,120648,111,120706,111,120764,111,11423,111,4351,111,1413,111,1505,111,1607,111,126500,111,126564,111,126596,111,65259,111,65260,111,65258,111,65257,111,1726,111,64428,111,64429,111,64427,111,64426,111,1729,111,64424,111,64425,111,64423,111,64422,111,1749,111,3360,111,4125,111,66794,111,71880,111,71895,111,66604,111,1984,79,2534,79,2918,79,12295,79,70864,79,71904,79,120782,79,120792,79,120802,79,120812,79,120822,79,130032,79,65327,79,119822,79,119874,79,119926,79,119978,79,120030,79,120082,79,120134,79,120186,79,120238,79,120290,79,120342,79,120394,79,120446,79,927,79,120502,79,120560,79,120618,79,120676,79,120734,79,11422,79,1365,79,11604,79,4816,79,2848,79,66754,79,42227,79,71861,79,66194,79,66219,79,66564,79,66838,79,9076,112,65360,112,119849,112,119901,112,119953,112,120005,112,120057,112,120109,112,120161,112,120213,112,120265,112,120317,112,120369,112,120421,112,120473,112,961,112,120530,112,120544,112,120588,112,120602,112,120646,112,120660,112,120704,112,120718,112,120762,112,120776,112,11427,112,65328,80,8473,80,119823,80,119875,80,119927,80,119979,80,120031,80,120083,80,120187,80,120239,80,120291,80,120343,80,120395,80,120447,80,929,80,120504,80,120562,80,120620,80,120678,80,120736,80,11426,80,5090,80,5229,80,42193,80,66197,80,119850,113,119902,113,119954,113,120006,113,120058,113,120110,113,120162,113,120214,113,120266,113,120318,113,120370,113,120422,113,120474,113,1307,113,1379,113,1382,113,8474,81,119824,81,119876,81,119928,81,119980,81,120032,81,120084,81,120188,81,120240,81,120292,81,120344,81,120396,81,120448,81,11605,81,119851,114,119903,114,119955,114,120007,114,120059,114,120111,114,120163,114,120215,114,120267,114,120319,114,120371,114,120423,114,120475,114,43847,114,43848,114,7462,114,11397,114,43905,114,119318,82,8475,82,8476,82,8477,82,119825,82,119877,82,119929,82,120033,82,120189,82,120241,82,120293,82,120345,82,120397,82,120449,82,422,82,5025,82,5074,82,66740,82,5511,82,42211,82,94005,82,65363,115,119852,115,119904,115,119956,115,120008,115,120060,115,120112,115,120164,115,120216,115,120268,115,120320,115,120372,115,120424,115,120476,115,42801,115,445,115,1109,115,43946,115,71873,115,66632,115,65331,83,119826,83,119878,83,119930,83,119982,83,120034,83,120086,83,120138,83,120190,83,120242,83,120294,83,120346,83,120398,83,120450,83,1029,83,1359,83,5077,83,5082,83,42210,83,94010,83,66198,83,66592,83,119853,116,119905,116,119957,116,120009,116,120061,116,120113,116,120165,116,120217,116,120269,116,120321,116,120373,116,120425,116,120477,116,8868,84,10201,84,128872,84,65332,84,119827,84,119879,84,119931,84,119983,84,120035,84,120087,84,120139,84,120191,84,120243,84,120295,84,120347,84,120399,84,120451,84,932,84,120507,84,120565,84,120623,84,120681,84,120739,84,11430,84,5026,84,42196,84,93962,84,71868,84,66199,84,66225,84,66325,84,119854,117,119906,117,119958,117,120010,117,120062,117,120114,117,120166,117,120218,117,120270,117,120322,117,120374,117,120426,117,120478,117,42911,117,7452,117,43854,117,43858,117,651,117,965,117,120534,117,120592,117,120650,117,120708,117,120766,117,1405,117,66806,117,71896,117,8746,85,8899,85,119828,85,119880,85,119932,85,119984,85,120036,85,120088,85,120140,85,120192,85,120244,85,120296,85,120348,85,120400,85,120452,85,1357,85,4608,85,66766,85,5196,85,42228,85,94018,85,71864,85,8744,118,8897,118,65366,118,8564,118,119855,118,119907,118,119959,118,120011,118,120063,118,120115,118,120167,118,120219,118,120271,118,120323,118,120375,118,120427,118,120479,118,7456,118,957,118,120526,118,120584,118,120642,118,120700,118,120758,118,1141,118,1496,118,71430,118,43945,118,71872,118,119309,86,1639,86,1783,86,8548,86,119829,86,119881,86,119933,86,119985,86,120037,86,120089,86,120141,86,120193,86,120245,86,120297,86,120349,86,120401,86,120453,86,1140,86,11576,86,5081,86,5167,86,42719,86,42214,86,93960,86,71840,86,66845,86,623,119,119856,119,119908,119,119960,119,120012,119,120064,119,120116,119,120168,119,120220,119,120272,119,120324,119,120376,119,120428,119,120480,119,7457,119,1121,119,1309,119,1377,119,71434,119,71438,119,71439,119,43907,119,71919,87,71910,87,119830,87,119882,87,119934,87,119986,87,120038,87,120090,87,120142,87,120194,87,120246,87,120298,87,120350,87,120402,87,120454,87,1308,87,5043,87,5076,87,42218,87,5742,120,10539,120,10540,120,10799,120,65368,120,8569,120,119857,120,119909,120,119961,120,120013,120,120065,120,120117,120,120169,120,120221,120,120273,120,120325,120,120377,120,120429,120,120481,120,5441,120,5501,120,5741,88,9587,88,66338,88,71916,88,65336,88,8553,88,119831,88,119883,88,119935,88,119987,88,120039,88,120091,88,120143,88,120195,88,120247,88,120299,88,120351,88,120403,88,120455,88,42931,88,935,88,120510,88,120568,88,120626,88,120684,88,120742,88,11436,88,11613,88,5815,88,42219,88,66192,88,66228,88,66327,88,66855,88,611,121,7564,121,65369,121,119858,121,119910,121,119962,121,120014,121,120066,121,120118,121,120170,121,120222,121,120274,121,120326,121,120378,121,120430,121,120482,121,655,121,7935,121,43866,121,947,121,8509,121,120516,121,120574,121,120632,121,120690,121,120748,121,1199,121,4327,121,71900,121,65337,89,119832,89,119884,89,119936,89,119988,89,120040,89,120092,89,120144,89,120196,89,120248,89,120300,89,120352,89,120404,89,120456,89,933,89,978,89,120508,89,120566,89,120624,89,120682,89,120740,89,11432,89,1198,89,5033,89,5053,89,42220,89,94019,89,71844,89,66226,89,119859,122,119911,122,119963,122,120015,122,120067,122,120119,122,120171,122,120223,122,120275,122,120327,122,120379,122,120431,122,120483,122,7458,122,43923,122,71876,122,66293,90,71909,90,65338,90,8484,90,8488,90,119833,90,119885,90,119937,90,119989,90,120041,90,120197,90,120249,90,120301,90,120353,90,120405,90,120457,90,918,90,120493,90,120551,90,120609,90,120667,90,120725,90,5059,90,42204,90,71849,90,65282,34,65284,36,65285,37,65286,38,65290,42,65291,43,65294,46,65295,47,65296,48,65297,49,65298,50,65299,51,65300,52,65301,53,65302,54,65303,55,65304,56,65305,57,65308,60,65309,61,65310,62,65312,64,65316,68,65318,70,65319,71,65324,76,65329,81,65330,82,65333,85,65334,86,65335,87,65343,95,65346,98,65348,100,65350,102,65355,107,65357,109,65358,110,65361,113,65362,114,65364,116,65365,117,65367,119,65370,122,65371,123,65373,125,119846,109],\"_default\":[160,32,8211,45,65374,126,65306,58,65281,33,8216,96,8217,96,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],\"cs\":[65374,126,65306,58,65281,33,8216,96,8217,96,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],\"de\":[65374,126,65306,58,65281,33,8216,96,8217,96,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],\"es\":[8211,45,65374,126,65306,58,65281,33,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],\"fr\":[65374,126,65306,58,65281,33,8216,96,8245,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],\"it\":[160,32,8211,45,65374,126,65306,58,65281,33,8216,96,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],\"ja\":[8211,45,65306,58,65281,33,8216,96,8217,96,8245,96,180,96,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65292,44,65307,59],\"ko\":[8211,45,65374,126,65306,58,65281,33,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],\"pl\":[65374,126,65306,58,65281,33,8216,96,8217,96,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],\"pt-BR\":[65374,126,65306,58,65281,33,8216,96,8217,96,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],\"qps-ploc\":[160,32,8211,45,65374,126,65306,58,65281,33,8216,96,8217,96,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],\"ru\":[65374,126,65306,58,65281,33,8216,96,8217,96,8245,96,180,96,12494,47,305,105,921,73,1009,112,215,120,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],\"tr\":[160,32,8211,45,65374,126,65306,58,65281,33,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65288,40,65289,41,65292,44,65307,59,65311,63],\"zh-hans\":[65374,126,65306,58,65281,33,8245,96,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65288,40,65289,41],\"zh-hant\":[8211,45,65374,126,180,96,12494,47,1047,51,1073,54,1072,97,1040,65,1068,98,1042,66,1089,99,1057,67,1077,101,1045,69,1053,72,305,105,1050,75,921,73,1052,77,1086,111,1054,79,1009,112,1088,112,1056,80,1075,114,1058,84,215,120,1093,120,1061,88,1091,121,1059,89,65283,35,65307,59]}');
|
||
}); }
|
||
static { this.cache = new cache_1.LRUCachedFunction({ getCacheKey: JSON.stringify }, (locales) => {
|
||
function arrayToMap(arr) {
|
||
const result = new Map();
|
||
for (let i = 0; i < arr.length; i += 2) {
|
||
result.set(arr[i], arr[i + 1]);
|
||
}
|
||
return result;
|
||
}
|
||
function mergeMaps(map1, map2) {
|
||
const result = new Map(map1);
|
||
for (const [key, value] of map2) {
|
||
result.set(key, value);
|
||
}
|
||
return result;
|
||
}
|
||
function intersectMaps(map1, map2) {
|
||
if (!map1) {
|
||
return map2;
|
||
}
|
||
const result = new Map();
|
||
for (const [key, value] of map1) {
|
||
if (map2.has(key)) {
|
||
result.set(key, value);
|
||
}
|
||
}
|
||
return result;
|
||
}
|
||
const data = this.ambiguousCharacterData.value;
|
||
let filteredLocales = locales.filter((l) => !l.startsWith('_') && l in data);
|
||
if (filteredLocales.length === 0) {
|
||
filteredLocales = ['_default'];
|
||
}
|
||
let languageSpecificMap = undefined;
|
||
for (const locale of filteredLocales) {
|
||
const map = arrayToMap(data[locale]);
|
||
languageSpecificMap = intersectMaps(languageSpecificMap, map);
|
||
}
|
||
const commonMap = arrayToMap(data['_common']);
|
||
const map = mergeMaps(commonMap, languageSpecificMap);
|
||
return new AmbiguousCharacters(map);
|
||
}); }
|
||
static getInstance(locales) {
|
||
return AmbiguousCharacters.cache.get(Array.from(locales));
|
||
}
|
||
static { this._locales = new lazy_1.Lazy(() => Object.keys(AmbiguousCharacters.ambiguousCharacterData.value).filter((k) => !k.startsWith('_'))); }
|
||
static getLocales() {
|
||
return AmbiguousCharacters._locales.value;
|
||
}
|
||
constructor(confusableDictionary) {
|
||
this.confusableDictionary = confusableDictionary;
|
||
}
|
||
isAmbiguous(codePoint) {
|
||
return this.confusableDictionary.has(codePoint);
|
||
}
|
||
/**
|
||
* Returns the non basic ASCII code point that the given code point can be confused,
|
||
* or undefined if such code point does note exist.
|
||
*/
|
||
getPrimaryConfusable(codePoint) {
|
||
return this.confusableDictionary.get(codePoint);
|
||
}
|
||
getConfusableCodePoints() {
|
||
return new Set(this.confusableDictionary.keys());
|
||
}
|
||
}
|
||
exports.AmbiguousCharacters = AmbiguousCharacters;
|
||
class InvisibleCharacters {
|
||
static getRawData() {
|
||
// Generated using https://github.com/hediet/vscode-unicode-data
|
||
return JSON.parse('[9,10,11,12,13,32,127,160,173,847,1564,4447,4448,6068,6069,6155,6156,6157,6158,7355,7356,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8234,8235,8236,8237,8238,8239,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,10240,12288,12644,65024,65025,65026,65027,65028,65029,65030,65031,65032,65033,65034,65035,65036,65037,65038,65039,65279,65440,65520,65521,65522,65523,65524,65525,65526,65527,65528,65532,78844,119155,119156,119157,119158,119159,119160,119161,119162,917504,917505,917506,917507,917508,917509,917510,917511,917512,917513,917514,917515,917516,917517,917518,917519,917520,917521,917522,917523,917524,917525,917526,917527,917528,917529,917530,917531,917532,917533,917534,917535,917536,917537,917538,917539,917540,917541,917542,917543,917544,917545,917546,917547,917548,917549,917550,917551,917552,917553,917554,917555,917556,917557,917558,917559,917560,917561,917562,917563,917564,917565,917566,917567,917568,917569,917570,917571,917572,917573,917574,917575,917576,917577,917578,917579,917580,917581,917582,917583,917584,917585,917586,917587,917588,917589,917590,917591,917592,917593,917594,917595,917596,917597,917598,917599,917600,917601,917602,917603,917604,917605,917606,917607,917608,917609,917610,917611,917612,917613,917614,917615,917616,917617,917618,917619,917620,917621,917622,917623,917624,917625,917626,917627,917628,917629,917630,917631,917760,917761,917762,917763,917764,917765,917766,917767,917768,917769,917770,917771,917772,917773,917774,917775,917776,917777,917778,917779,917780,917781,917782,917783,917784,917785,917786,917787,917788,917789,917790,917791,917792,917793,917794,917795,917796,917797,917798,917799,917800,917801,917802,917803,917804,917805,917806,917807,917808,917809,917810,917811,917812,917813,917814,917815,917816,917817,917818,917819,917820,917821,917822,917823,917824,917825,917826,917827,917828,917829,917830,917831,917832,917833,917834,917835,917836,917837,917838,917839,917840,917841,917842,917843,917844,917845,917846,917847,917848,917849,917850,917851,917852,917853,917854,917855,917856,917857,917858,917859,917860,917861,917862,917863,917864,917865,917866,917867,917868,917869,917870,917871,917872,917873,917874,917875,917876,917877,917878,917879,917880,917881,917882,917883,917884,917885,917886,917887,917888,917889,917890,917891,917892,917893,917894,917895,917896,917897,917898,917899,917900,917901,917902,917903,917904,917905,917906,917907,917908,917909,917910,917911,917912,917913,917914,917915,917916,917917,917918,917919,917920,917921,917922,917923,917924,917925,917926,917927,917928,917929,917930,917931,917932,917933,917934,917935,917936,917937,917938,917939,917940,917941,917942,917943,917944,917945,917946,917947,917948,917949,917950,917951,917952,917953,917954,917955,917956,917957,917958,917959,917960,917961,917962,917963,917964,917965,917966,917967,917968,917969,917970,917971,917972,917973,917974,917975,917976,917977,917978,917979,917980,917981,917982,917983,917984,917985,917986,917987,917988,917989,917990,917991,917992,917993,917994,917995,917996,917997,917998,917999]');
|
||
}
|
||
static { this._data = undefined; }
|
||
static getData() {
|
||
if (!this._data) {
|
||
this._data = new Set(InvisibleCharacters.getRawData());
|
||
}
|
||
return this._data;
|
||
}
|
||
static isInvisibleCharacter(codePoint) {
|
||
return InvisibleCharacters.getData().has(codePoint);
|
||
}
|
||
static get codePoints() {
|
||
return InvisibleCharacters.getData();
|
||
}
|
||
}
|
||
exports.InvisibleCharacters = InvisibleCharacters;
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[44/*vs/base/common/hash*/], __M([0/*require*/,1/*exports*/,6/*vs/base/common/strings*/]), function (require, exports, strings) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.StringSHA1 = void 0;
|
||
exports.hash = hash;
|
||
exports.doHash = doHash;
|
||
exports.numberHash = numberHash;
|
||
exports.stringHash = stringHash;
|
||
exports.toHexString = toHexString;
|
||
/**
|
||
* Return a hash value for an object.
|
||
*/
|
||
function hash(obj) {
|
||
return doHash(obj, 0);
|
||
}
|
||
function doHash(obj, hashVal) {
|
||
switch (typeof obj) {
|
||
case 'object':
|
||
if (obj === null) {
|
||
return numberHash(349, hashVal);
|
||
}
|
||
else if (Array.isArray(obj)) {
|
||
return arrayHash(obj, hashVal);
|
||
}
|
||
return objectHash(obj, hashVal);
|
||
case 'string':
|
||
return stringHash(obj, hashVal);
|
||
case 'boolean':
|
||
return booleanHash(obj, hashVal);
|
||
case 'number':
|
||
return numberHash(obj, hashVal);
|
||
case 'undefined':
|
||
return numberHash(937, hashVal);
|
||
default:
|
||
return numberHash(617, hashVal);
|
||
}
|
||
}
|
||
function numberHash(val, initialHashVal) {
|
||
return (((initialHashVal << 5) - initialHashVal) + val) | 0; // hashVal * 31 + ch, keep as int32
|
||
}
|
||
function booleanHash(b, initialHashVal) {
|
||
return numberHash(b ? 433 : 863, initialHashVal);
|
||
}
|
||
function stringHash(s, hashVal) {
|
||
hashVal = numberHash(149417, hashVal);
|
||
for (let i = 0, length = s.length; i < length; i++) {
|
||
hashVal = numberHash(s.charCodeAt(i), hashVal);
|
||
}
|
||
return hashVal;
|
||
}
|
||
function arrayHash(arr, initialHashVal) {
|
||
initialHashVal = numberHash(104579, initialHashVal);
|
||
return arr.reduce((hashVal, item) => doHash(item, hashVal), initialHashVal);
|
||
}
|
||
function objectHash(obj, initialHashVal) {
|
||
initialHashVal = numberHash(181387, initialHashVal);
|
||
return Object.keys(obj).sort().reduce((hashVal, key) => {
|
||
hashVal = stringHash(key, hashVal);
|
||
return doHash(obj[key], hashVal);
|
||
}, initialHashVal);
|
||
}
|
||
function leftRotate(value, bits, totalBits = 32) {
|
||
// delta + bits = totalBits
|
||
const delta = totalBits - bits;
|
||
// All ones, expect `delta` zeros aligned to the right
|
||
const mask = ~((1 << delta) - 1);
|
||
// Join (value left-shifted `bits` bits) with (masked value right-shifted `delta` bits)
|
||
return ((value << bits) | ((mask & value) >>> delta)) >>> 0;
|
||
}
|
||
function fill(dest, index = 0, count = dest.byteLength, value = 0) {
|
||
for (let i = 0; i < count; i++) {
|
||
dest[index + i] = value;
|
||
}
|
||
}
|
||
function leftPad(value, length, char = '0') {
|
||
while (value.length < length) {
|
||
value = char + value;
|
||
}
|
||
return value;
|
||
}
|
||
function toHexString(bufferOrValue, bitsize = 32) {
|
||
if (bufferOrValue instanceof ArrayBuffer) {
|
||
return Array.from(new Uint8Array(bufferOrValue)).map(b => b.toString(16).padStart(2, '0')).join('');
|
||
}
|
||
return leftPad((bufferOrValue >>> 0).toString(16), bitsize / 4);
|
||
}
|
||
/**
|
||
* A SHA1 implementation that works with strings and does not allocate.
|
||
*/
|
||
class StringSHA1 {
|
||
static { this._bigBlock32 = new DataView(new ArrayBuffer(320)); } // 80 * 4 = 320
|
||
constructor() {
|
||
this._h0 = 0x67452301;
|
||
this._h1 = 0xEFCDAB89;
|
||
this._h2 = 0x98BADCFE;
|
||
this._h3 = 0x10325476;
|
||
this._h4 = 0xC3D2E1F0;
|
||
this._buff = new Uint8Array(64 /* SHA1Constant.BLOCK_SIZE */ + 3 /* to fit any utf-8 */);
|
||
this._buffDV = new DataView(this._buff.buffer);
|
||
this._buffLen = 0;
|
||
this._totalLen = 0;
|
||
this._leftoverHighSurrogate = 0;
|
||
this._finished = false;
|
||
}
|
||
update(str) {
|
||
const strLen = str.length;
|
||
if (strLen === 0) {
|
||
return;
|
||
}
|
||
const buff = this._buff;
|
||
let buffLen = this._buffLen;
|
||
let leftoverHighSurrogate = this._leftoverHighSurrogate;
|
||
let charCode;
|
||
let offset;
|
||
if (leftoverHighSurrogate !== 0) {
|
||
charCode = leftoverHighSurrogate;
|
||
offset = -1;
|
||
leftoverHighSurrogate = 0;
|
||
}
|
||
else {
|
||
charCode = str.charCodeAt(0);
|
||
offset = 0;
|
||
}
|
||
while (true) {
|
||
let codePoint = charCode;
|
||
if (strings.isHighSurrogate(charCode)) {
|
||
if (offset + 1 < strLen) {
|
||
const nextCharCode = str.charCodeAt(offset + 1);
|
||
if (strings.isLowSurrogate(nextCharCode)) {
|
||
offset++;
|
||
codePoint = strings.computeCodePoint(charCode, nextCharCode);
|
||
}
|
||
else {
|
||
// illegal => unicode replacement character
|
||
codePoint = 65533 /* SHA1Constant.UNICODE_REPLACEMENT */;
|
||
}
|
||
}
|
||
else {
|
||
// last character is a surrogate pair
|
||
leftoverHighSurrogate = charCode;
|
||
break;
|
||
}
|
||
}
|
||
else if (strings.isLowSurrogate(charCode)) {
|
||
// illegal => unicode replacement character
|
||
codePoint = 65533 /* SHA1Constant.UNICODE_REPLACEMENT */;
|
||
}
|
||
buffLen = this._push(buff, buffLen, codePoint);
|
||
offset++;
|
||
if (offset < strLen) {
|
||
charCode = str.charCodeAt(offset);
|
||
}
|
||
else {
|
||
break;
|
||
}
|
||
}
|
||
this._buffLen = buffLen;
|
||
this._leftoverHighSurrogate = leftoverHighSurrogate;
|
||
}
|
||
_push(buff, buffLen, codePoint) {
|
||
if (codePoint < 0x0080) {
|
||
buff[buffLen++] = codePoint;
|
||
}
|
||
else if (codePoint < 0x0800) {
|
||
buff[buffLen++] = 0b11000000 | ((codePoint & 0b00000000000000000000011111000000) >>> 6);
|
||
buff[buffLen++] = 0b10000000 | ((codePoint & 0b00000000000000000000000000111111) >>> 0);
|
||
}
|
||
else if (codePoint < 0x10000) {
|
||
buff[buffLen++] = 0b11100000 | ((codePoint & 0b00000000000000001111000000000000) >>> 12);
|
||
buff[buffLen++] = 0b10000000 | ((codePoint & 0b00000000000000000000111111000000) >>> 6);
|
||
buff[buffLen++] = 0b10000000 | ((codePoint & 0b00000000000000000000000000111111) >>> 0);
|
||
}
|
||
else {
|
||
buff[buffLen++] = 0b11110000 | ((codePoint & 0b00000000000111000000000000000000) >>> 18);
|
||
buff[buffLen++] = 0b10000000 | ((codePoint & 0b00000000000000111111000000000000) >>> 12);
|
||
buff[buffLen++] = 0b10000000 | ((codePoint & 0b00000000000000000000111111000000) >>> 6);
|
||
buff[buffLen++] = 0b10000000 | ((codePoint & 0b00000000000000000000000000111111) >>> 0);
|
||
}
|
||
if (buffLen >= 64 /* SHA1Constant.BLOCK_SIZE */) {
|
||
this._step();
|
||
buffLen -= 64 /* SHA1Constant.BLOCK_SIZE */;
|
||
this._totalLen += 64 /* SHA1Constant.BLOCK_SIZE */;
|
||
// take last 3 in case of UTF8 overflow
|
||
buff[0] = buff[64 /* SHA1Constant.BLOCK_SIZE */ + 0];
|
||
buff[1] = buff[64 /* SHA1Constant.BLOCK_SIZE */ + 1];
|
||
buff[2] = buff[64 /* SHA1Constant.BLOCK_SIZE */ + 2];
|
||
}
|
||
return buffLen;
|
||
}
|
||
digest() {
|
||
if (!this._finished) {
|
||
this._finished = true;
|
||
if (this._leftoverHighSurrogate) {
|
||
// illegal => unicode replacement character
|
||
this._leftoverHighSurrogate = 0;
|
||
this._buffLen = this._push(this._buff, this._buffLen, 65533 /* SHA1Constant.UNICODE_REPLACEMENT */);
|
||
}
|
||
this._totalLen += this._buffLen;
|
||
this._wrapUp();
|
||
}
|
||
return toHexString(this._h0) + toHexString(this._h1) + toHexString(this._h2) + toHexString(this._h3) + toHexString(this._h4);
|
||
}
|
||
_wrapUp() {
|
||
this._buff[this._buffLen++] = 0x80;
|
||
fill(this._buff, this._buffLen);
|
||
if (this._buffLen > 56) {
|
||
this._step();
|
||
fill(this._buff);
|
||
}
|
||
// this will fit because the mantissa can cover up to 52 bits
|
||
const ml = 8 * this._totalLen;
|
||
this._buffDV.setUint32(56, Math.floor(ml / 4294967296), false);
|
||
this._buffDV.setUint32(60, ml % 4294967296, false);
|
||
this._step();
|
||
}
|
||
_step() {
|
||
const bigBlock32 = StringSHA1._bigBlock32;
|
||
const data = this._buffDV;
|
||
for (let j = 0; j < 64 /* 16*4 */; j += 4) {
|
||
bigBlock32.setUint32(j, data.getUint32(j, false), false);
|
||
}
|
||
for (let j = 64; j < 320 /* 80*4 */; j += 4) {
|
||
bigBlock32.setUint32(j, leftRotate((bigBlock32.getUint32(j - 12, false) ^ bigBlock32.getUint32(j - 32, false) ^ bigBlock32.getUint32(j - 56, false) ^ bigBlock32.getUint32(j - 64, false)), 1), false);
|
||
}
|
||
let a = this._h0;
|
||
let b = this._h1;
|
||
let c = this._h2;
|
||
let d = this._h3;
|
||
let e = this._h4;
|
||
let f, k;
|
||
let temp;
|
||
for (let j = 0; j < 80; j++) {
|
||
if (j < 20) {
|
||
f = (b & c) | ((~b) & d);
|
||
k = 0x5A827999;
|
||
}
|
||
else if (j < 40) {
|
||
f = b ^ c ^ d;
|
||
k = 0x6ED9EBA1;
|
||
}
|
||
else if (j < 60) {
|
||
f = (b & c) | (b & d) | (c & d);
|
||
k = 0x8F1BBCDC;
|
||
}
|
||
else {
|
||
f = b ^ c ^ d;
|
||
k = 0xCA62C1D6;
|
||
}
|
||
temp = (leftRotate(a, 5) + f + e + k + bigBlock32.getUint32(j * 4, false)) & 0xffffffff;
|
||
e = d;
|
||
d = c;
|
||
c = leftRotate(b, 30);
|
||
b = a;
|
||
a = temp;
|
||
}
|
||
this._h0 = (this._h0 + a) & 0xffffffff;
|
||
this._h1 = (this._h1 + b) & 0xffffffff;
|
||
this._h2 = (this._h2 + c) & 0xffffffff;
|
||
this._h3 = (this._h3 + d) & 0xffffffff;
|
||
this._h4 = (this._h4 + e) & 0xffffffff;
|
||
}
|
||
}
|
||
exports.StringSHA1 = StringSHA1;
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[24/*vs/base/common/diff/diff*/], __M([0/*require*/,1/*exports*/,41/*vs/base/common/diff/diffChange*/,44/*vs/base/common/hash*/]), function (require, exports, diffChange_1, hash_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.LcsDiff = exports.StringDiffSequence = void 0;
|
||
exports.stringDiff = stringDiff;
|
||
class StringDiffSequence {
|
||
constructor(source) {
|
||
this.source = source;
|
||
}
|
||
getElements() {
|
||
const source = this.source;
|
||
const characters = new Int32Array(source.length);
|
||
for (let i = 0, len = source.length; i < len; i++) {
|
||
characters[i] = source.charCodeAt(i);
|
||
}
|
||
return characters;
|
||
}
|
||
}
|
||
exports.StringDiffSequence = StringDiffSequence;
|
||
function stringDiff(original, modified, pretty) {
|
||
return new LcsDiff(new StringDiffSequence(original), new StringDiffSequence(modified)).ComputeDiff(pretty).changes;
|
||
}
|
||
//
|
||
// The code below has been ported from a C# implementation in VS
|
||
//
|
||
class Debug {
|
||
static Assert(condition, message) {
|
||
if (!condition) {
|
||
throw new Error(message);
|
||
}
|
||
}
|
||
}
|
||
class MyArray {
|
||
/**
|
||
* Copies a range of elements from an Array starting at the specified source index and pastes
|
||
* them to another Array starting at the specified destination index. The length and the indexes
|
||
* are specified as 64-bit integers.
|
||
* sourceArray:
|
||
* The Array that contains the data to copy.
|
||
* sourceIndex:
|
||
* A 64-bit integer that represents the index in the sourceArray at which copying begins.
|
||
* destinationArray:
|
||
* The Array that receives the data.
|
||
* destinationIndex:
|
||
* A 64-bit integer that represents the index in the destinationArray at which storing begins.
|
||
* length:
|
||
* A 64-bit integer that represents the number of elements to copy.
|
||
*/
|
||
static Copy(sourceArray, sourceIndex, destinationArray, destinationIndex, length) {
|
||
for (let i = 0; i < length; i++) {
|
||
destinationArray[destinationIndex + i] = sourceArray[sourceIndex + i];
|
||
}
|
||
}
|
||
static Copy2(sourceArray, sourceIndex, destinationArray, destinationIndex, length) {
|
||
for (let i = 0; i < length; i++) {
|
||
destinationArray[destinationIndex + i] = sourceArray[sourceIndex + i];
|
||
}
|
||
}
|
||
}
|
||
/**
|
||
* A utility class which helps to create the set of DiffChanges from
|
||
* a difference operation. This class accepts original DiffElements and
|
||
* modified DiffElements that are involved in a particular change. The
|
||
* MarkNextChange() method can be called to mark the separation between
|
||
* distinct changes. At the end, the Changes property can be called to retrieve
|
||
* the constructed changes.
|
||
*/
|
||
class DiffChangeHelper {
|
||
/**
|
||
* Constructs a new DiffChangeHelper for the given DiffSequences.
|
||
*/
|
||
constructor() {
|
||
this.m_changes = [];
|
||
this.m_originalStart = 1073741824 /* Constants.MAX_SAFE_SMALL_INTEGER */;
|
||
this.m_modifiedStart = 1073741824 /* Constants.MAX_SAFE_SMALL_INTEGER */;
|
||
this.m_originalCount = 0;
|
||
this.m_modifiedCount = 0;
|
||
}
|
||
/**
|
||
* Marks the beginning of the next change in the set of differences.
|
||
*/
|
||
MarkNextChange() {
|
||
// Only add to the list if there is something to add
|
||
if (this.m_originalCount > 0 || this.m_modifiedCount > 0) {
|
||
// Add the new change to our list
|
||
this.m_changes.push(new diffChange_1.DiffChange(this.m_originalStart, this.m_originalCount, this.m_modifiedStart, this.m_modifiedCount));
|
||
}
|
||
// Reset for the next change
|
||
this.m_originalCount = 0;
|
||
this.m_modifiedCount = 0;
|
||
this.m_originalStart = 1073741824 /* Constants.MAX_SAFE_SMALL_INTEGER */;
|
||
this.m_modifiedStart = 1073741824 /* Constants.MAX_SAFE_SMALL_INTEGER */;
|
||
}
|
||
/**
|
||
* Adds the original element at the given position to the elements
|
||
* affected by the current change. The modified index gives context
|
||
* to the change position with respect to the original sequence.
|
||
* @param originalIndex The index of the original element to add.
|
||
* @param modifiedIndex The index of the modified element that provides corresponding position in the modified sequence.
|
||
*/
|
||
AddOriginalElement(originalIndex, modifiedIndex) {
|
||
// The 'true' start index is the smallest of the ones we've seen
|
||
this.m_originalStart = Math.min(this.m_originalStart, originalIndex);
|
||
this.m_modifiedStart = Math.min(this.m_modifiedStart, modifiedIndex);
|
||
this.m_originalCount++;
|
||
}
|
||
/**
|
||
* Adds the modified element at the given position to the elements
|
||
* affected by the current change. The original index gives context
|
||
* to the change position with respect to the modified sequence.
|
||
* @param originalIndex The index of the original element that provides corresponding position in the original sequence.
|
||
* @param modifiedIndex The index of the modified element to add.
|
||
*/
|
||
AddModifiedElement(originalIndex, modifiedIndex) {
|
||
// The 'true' start index is the smallest of the ones we've seen
|
||
this.m_originalStart = Math.min(this.m_originalStart, originalIndex);
|
||
this.m_modifiedStart = Math.min(this.m_modifiedStart, modifiedIndex);
|
||
this.m_modifiedCount++;
|
||
}
|
||
/**
|
||
* Retrieves all of the changes marked by the class.
|
||
*/
|
||
getChanges() {
|
||
if (this.m_originalCount > 0 || this.m_modifiedCount > 0) {
|
||
// Finish up on whatever is left
|
||
this.MarkNextChange();
|
||
}
|
||
return this.m_changes;
|
||
}
|
||
/**
|
||
* Retrieves all of the changes marked by the class in the reverse order
|
||
*/
|
||
getReverseChanges() {
|
||
if (this.m_originalCount > 0 || this.m_modifiedCount > 0) {
|
||
// Finish up on whatever is left
|
||
this.MarkNextChange();
|
||
}
|
||
this.m_changes.reverse();
|
||
return this.m_changes;
|
||
}
|
||
}
|
||
/**
|
||
* An implementation of the difference algorithm described in
|
||
* "An O(ND) Difference Algorithm and its variations" by Eugene W. Myers
|
||
*/
|
||
class LcsDiff {
|
||
/**
|
||
* Constructs the DiffFinder
|
||
*/
|
||
constructor(originalSequence, modifiedSequence, continueProcessingPredicate = null) {
|
||
this.ContinueProcessingPredicate = continueProcessingPredicate;
|
||
this._originalSequence = originalSequence;
|
||
this._modifiedSequence = modifiedSequence;
|
||
const [originalStringElements, originalElementsOrHash, originalHasStrings] = LcsDiff._getElements(originalSequence);
|
||
const [modifiedStringElements, modifiedElementsOrHash, modifiedHasStrings] = LcsDiff._getElements(modifiedSequence);
|
||
this._hasStrings = (originalHasStrings && modifiedHasStrings);
|
||
this._originalStringElements = originalStringElements;
|
||
this._originalElementsOrHash = originalElementsOrHash;
|
||
this._modifiedStringElements = modifiedStringElements;
|
||
this._modifiedElementsOrHash = modifiedElementsOrHash;
|
||
this.m_forwardHistory = [];
|
||
this.m_reverseHistory = [];
|
||
}
|
||
static _isStringArray(arr) {
|
||
return (arr.length > 0 && typeof arr[0] === 'string');
|
||
}
|
||
static _getElements(sequence) {
|
||
const elements = sequence.getElements();
|
||
if (LcsDiff._isStringArray(elements)) {
|
||
const hashes = new Int32Array(elements.length);
|
||
for (let i = 0, len = elements.length; i < len; i++) {
|
||
hashes[i] = (0, hash_1.stringHash)(elements[i], 0);
|
||
}
|
||
return [elements, hashes, true];
|
||
}
|
||
if (elements instanceof Int32Array) {
|
||
return [[], elements, false];
|
||
}
|
||
return [[], new Int32Array(elements), false];
|
||
}
|
||
ElementsAreEqual(originalIndex, newIndex) {
|
||
if (this._originalElementsOrHash[originalIndex] !== this._modifiedElementsOrHash[newIndex]) {
|
||
return false;
|
||
}
|
||
return (this._hasStrings ? this._originalStringElements[originalIndex] === this._modifiedStringElements[newIndex] : true);
|
||
}
|
||
ElementsAreStrictEqual(originalIndex, newIndex) {
|
||
if (!this.ElementsAreEqual(originalIndex, newIndex)) {
|
||
return false;
|
||
}
|
||
const originalElement = LcsDiff._getStrictElement(this._originalSequence, originalIndex);
|
||
const modifiedElement = LcsDiff._getStrictElement(this._modifiedSequence, newIndex);
|
||
return (originalElement === modifiedElement);
|
||
}
|
||
static _getStrictElement(sequence, index) {
|
||
if (typeof sequence.getStrictElement === 'function') {
|
||
return sequence.getStrictElement(index);
|
||
}
|
||
return null;
|
||
}
|
||
OriginalElementsAreEqual(index1, index2) {
|
||
if (this._originalElementsOrHash[index1] !== this._originalElementsOrHash[index2]) {
|
||
return false;
|
||
}
|
||
return (this._hasStrings ? this._originalStringElements[index1] === this._originalStringElements[index2] : true);
|
||
}
|
||
ModifiedElementsAreEqual(index1, index2) {
|
||
if (this._modifiedElementsOrHash[index1] !== this._modifiedElementsOrHash[index2]) {
|
||
return false;
|
||
}
|
||
return (this._hasStrings ? this._modifiedStringElements[index1] === this._modifiedStringElements[index2] : true);
|
||
}
|
||
ComputeDiff(pretty) {
|
||
return this._ComputeDiff(0, this._originalElementsOrHash.length - 1, 0, this._modifiedElementsOrHash.length - 1, pretty);
|
||
}
|
||
/**
|
||
* Computes the differences between the original and modified input
|
||
* sequences on the bounded range.
|
||
* @returns An array of the differences between the two input sequences.
|
||
*/
|
||
_ComputeDiff(originalStart, originalEnd, modifiedStart, modifiedEnd, pretty) {
|
||
const quitEarlyArr = [false];
|
||
let changes = this.ComputeDiffRecursive(originalStart, originalEnd, modifiedStart, modifiedEnd, quitEarlyArr);
|
||
if (pretty) {
|
||
// We have to clean up the computed diff to be more intuitive
|
||
// but it turns out this cannot be done correctly until the entire set
|
||
// of diffs have been computed
|
||
changes = this.PrettifyChanges(changes);
|
||
}
|
||
return {
|
||
quitEarly: quitEarlyArr[0],
|
||
changes: changes
|
||
};
|
||
}
|
||
/**
|
||
* Private helper method which computes the differences on the bounded range
|
||
* recursively.
|
||
* @returns An array of the differences between the two input sequences.
|
||
*/
|
||
ComputeDiffRecursive(originalStart, originalEnd, modifiedStart, modifiedEnd, quitEarlyArr) {
|
||
quitEarlyArr[0] = false;
|
||
// Find the start of the differences
|
||
while (originalStart <= originalEnd && modifiedStart <= modifiedEnd && this.ElementsAreEqual(originalStart, modifiedStart)) {
|
||
originalStart++;
|
||
modifiedStart++;
|
||
}
|
||
// Find the end of the differences
|
||
while (originalEnd >= originalStart && modifiedEnd >= modifiedStart && this.ElementsAreEqual(originalEnd, modifiedEnd)) {
|
||
originalEnd--;
|
||
modifiedEnd--;
|
||
}
|
||
// In the special case where we either have all insertions or all deletions or the sequences are identical
|
||
if (originalStart > originalEnd || modifiedStart > modifiedEnd) {
|
||
let changes;
|
||
if (modifiedStart <= modifiedEnd) {
|
||
Debug.Assert(originalStart === originalEnd + 1, 'originalStart should only be one more than originalEnd');
|
||
// All insertions
|
||
changes = [
|
||
new diffChange_1.DiffChange(originalStart, 0, modifiedStart, modifiedEnd - modifiedStart + 1)
|
||
];
|
||
}
|
||
else if (originalStart <= originalEnd) {
|
||
Debug.Assert(modifiedStart === modifiedEnd + 1, 'modifiedStart should only be one more than modifiedEnd');
|
||
// All deletions
|
||
changes = [
|
||
new diffChange_1.DiffChange(originalStart, originalEnd - originalStart + 1, modifiedStart, 0)
|
||
];
|
||
}
|
||
else {
|
||
Debug.Assert(originalStart === originalEnd + 1, 'originalStart should only be one more than originalEnd');
|
||
Debug.Assert(modifiedStart === modifiedEnd + 1, 'modifiedStart should only be one more than modifiedEnd');
|
||
// Identical sequences - No differences
|
||
changes = [];
|
||
}
|
||
return changes;
|
||
}
|
||
// This problem can be solved using the Divide-And-Conquer technique.
|
||
const midOriginalArr = [0];
|
||
const midModifiedArr = [0];
|
||
const result = this.ComputeRecursionPoint(originalStart, originalEnd, modifiedStart, modifiedEnd, midOriginalArr, midModifiedArr, quitEarlyArr);
|
||
const midOriginal = midOriginalArr[0];
|
||
const midModified = midModifiedArr[0];
|
||
if (result !== null) {
|
||
// Result is not-null when there was enough memory to compute the changes while
|
||
// searching for the recursion point
|
||
return result;
|
||
}
|
||
else if (!quitEarlyArr[0]) {
|
||
// We can break the problem down recursively by finding the changes in the
|
||
// First Half: (originalStart, modifiedStart) to (midOriginal, midModified)
|
||
// Second Half: (midOriginal + 1, minModified + 1) to (originalEnd, modifiedEnd)
|
||
// NOTE: ComputeDiff() is inclusive, therefore the second range starts on the next point
|
||
const leftChanges = this.ComputeDiffRecursive(originalStart, midOriginal, modifiedStart, midModified, quitEarlyArr);
|
||
let rightChanges = [];
|
||
if (!quitEarlyArr[0]) {
|
||
rightChanges = this.ComputeDiffRecursive(midOriginal + 1, originalEnd, midModified + 1, modifiedEnd, quitEarlyArr);
|
||
}
|
||
else {
|
||
// We didn't have time to finish the first half, so we don't have time to compute this half.
|
||
// Consider the entire rest of the sequence different.
|
||
rightChanges = [
|
||
new diffChange_1.DiffChange(midOriginal + 1, originalEnd - (midOriginal + 1) + 1, midModified + 1, modifiedEnd - (midModified + 1) + 1)
|
||
];
|
||
}
|
||
return this.ConcatenateChanges(leftChanges, rightChanges);
|
||
}
|
||
// If we hit here, we quit early, and so can't return anything meaningful
|
||
return [
|
||
new diffChange_1.DiffChange(originalStart, originalEnd - originalStart + 1, modifiedStart, modifiedEnd - modifiedStart + 1)
|
||
];
|
||
}
|
||
WALKTRACE(diagonalForwardBase, diagonalForwardStart, diagonalForwardEnd, diagonalForwardOffset, diagonalReverseBase, diagonalReverseStart, diagonalReverseEnd, diagonalReverseOffset, forwardPoints, reversePoints, originalIndex, originalEnd, midOriginalArr, modifiedIndex, modifiedEnd, midModifiedArr, deltaIsEven, quitEarlyArr) {
|
||
let forwardChanges = null;
|
||
let reverseChanges = null;
|
||
// First, walk backward through the forward diagonals history
|
||
let changeHelper = new DiffChangeHelper();
|
||
let diagonalMin = diagonalForwardStart;
|
||
let diagonalMax = diagonalForwardEnd;
|
||
let diagonalRelative = (midOriginalArr[0] - midModifiedArr[0]) - diagonalForwardOffset;
|
||
let lastOriginalIndex = -1073741824 /* Constants.MIN_SAFE_SMALL_INTEGER */;
|
||
let historyIndex = this.m_forwardHistory.length - 1;
|
||
do {
|
||
// Get the diagonal index from the relative diagonal number
|
||
const diagonal = diagonalRelative + diagonalForwardBase;
|
||
// Figure out where we came from
|
||
if (diagonal === diagonalMin || (diagonal < diagonalMax && forwardPoints[diagonal - 1] < forwardPoints[diagonal + 1])) {
|
||
// Vertical line (the element is an insert)
|
||
originalIndex = forwardPoints[diagonal + 1];
|
||
modifiedIndex = originalIndex - diagonalRelative - diagonalForwardOffset;
|
||
if (originalIndex < lastOriginalIndex) {
|
||
changeHelper.MarkNextChange();
|
||
}
|
||
lastOriginalIndex = originalIndex;
|
||
changeHelper.AddModifiedElement(originalIndex + 1, modifiedIndex);
|
||
diagonalRelative = (diagonal + 1) - diagonalForwardBase; //Setup for the next iteration
|
||
}
|
||
else {
|
||
// Horizontal line (the element is a deletion)
|
||
originalIndex = forwardPoints[diagonal - 1] + 1;
|
||
modifiedIndex = originalIndex - diagonalRelative - diagonalForwardOffset;
|
||
if (originalIndex < lastOriginalIndex) {
|
||
changeHelper.MarkNextChange();
|
||
}
|
||
lastOriginalIndex = originalIndex - 1;
|
||
changeHelper.AddOriginalElement(originalIndex, modifiedIndex + 1);
|
||
diagonalRelative = (diagonal - 1) - diagonalForwardBase; //Setup for the next iteration
|
||
}
|
||
if (historyIndex >= 0) {
|
||
forwardPoints = this.m_forwardHistory[historyIndex];
|
||
diagonalForwardBase = forwardPoints[0]; //We stored this in the first spot
|
||
diagonalMin = 1;
|
||
diagonalMax = forwardPoints.length - 1;
|
||
}
|
||
} while (--historyIndex >= -1);
|
||
// Ironically, we get the forward changes as the reverse of the
|
||
// order we added them since we technically added them backwards
|
||
forwardChanges = changeHelper.getReverseChanges();
|
||
if (quitEarlyArr[0]) {
|
||
// TODO: Calculate a partial from the reverse diagonals.
|
||
// For now, just assume everything after the midOriginal/midModified point is a diff
|
||
let originalStartPoint = midOriginalArr[0] + 1;
|
||
let modifiedStartPoint = midModifiedArr[0] + 1;
|
||
if (forwardChanges !== null && forwardChanges.length > 0) {
|
||
const lastForwardChange = forwardChanges[forwardChanges.length - 1];
|
||
originalStartPoint = Math.max(originalStartPoint, lastForwardChange.getOriginalEnd());
|
||
modifiedStartPoint = Math.max(modifiedStartPoint, lastForwardChange.getModifiedEnd());
|
||
}
|
||
reverseChanges = [
|
||
new diffChange_1.DiffChange(originalStartPoint, originalEnd - originalStartPoint + 1, modifiedStartPoint, modifiedEnd - modifiedStartPoint + 1)
|
||
];
|
||
}
|
||
else {
|
||
// Now walk backward through the reverse diagonals history
|
||
changeHelper = new DiffChangeHelper();
|
||
diagonalMin = diagonalReverseStart;
|
||
diagonalMax = diagonalReverseEnd;
|
||
diagonalRelative = (midOriginalArr[0] - midModifiedArr[0]) - diagonalReverseOffset;
|
||
lastOriginalIndex = 1073741824 /* Constants.MAX_SAFE_SMALL_INTEGER */;
|
||
historyIndex = (deltaIsEven) ? this.m_reverseHistory.length - 1 : this.m_reverseHistory.length - 2;
|
||
do {
|
||
// Get the diagonal index from the relative diagonal number
|
||
const diagonal = diagonalRelative + diagonalReverseBase;
|
||
// Figure out where we came from
|
||
if (diagonal === diagonalMin || (diagonal < diagonalMax && reversePoints[diagonal - 1] >= reversePoints[diagonal + 1])) {
|
||
// Horizontal line (the element is a deletion))
|
||
originalIndex = reversePoints[diagonal + 1] - 1;
|
||
modifiedIndex = originalIndex - diagonalRelative - diagonalReverseOffset;
|
||
if (originalIndex > lastOriginalIndex) {
|
||
changeHelper.MarkNextChange();
|
||
}
|
||
lastOriginalIndex = originalIndex + 1;
|
||
changeHelper.AddOriginalElement(originalIndex + 1, modifiedIndex + 1);
|
||
diagonalRelative = (diagonal + 1) - diagonalReverseBase; //Setup for the next iteration
|
||
}
|
||
else {
|
||
// Vertical line (the element is an insertion)
|
||
originalIndex = reversePoints[diagonal - 1];
|
||
modifiedIndex = originalIndex - diagonalRelative - diagonalReverseOffset;
|
||
if (originalIndex > lastOriginalIndex) {
|
||
changeHelper.MarkNextChange();
|
||
}
|
||
lastOriginalIndex = originalIndex;
|
||
changeHelper.AddModifiedElement(originalIndex + 1, modifiedIndex + 1);
|
||
diagonalRelative = (diagonal - 1) - diagonalReverseBase; //Setup for the next iteration
|
||
}
|
||
if (historyIndex >= 0) {
|
||
reversePoints = this.m_reverseHistory[historyIndex];
|
||
diagonalReverseBase = reversePoints[0]; //We stored this in the first spot
|
||
diagonalMin = 1;
|
||
diagonalMax = reversePoints.length - 1;
|
||
}
|
||
} while (--historyIndex >= -1);
|
||
// There are cases where the reverse history will find diffs that
|
||
// are correct, but not intuitive, so we need shift them.
|
||
reverseChanges = changeHelper.getChanges();
|
||
}
|
||
return this.ConcatenateChanges(forwardChanges, reverseChanges);
|
||
}
|
||
/**
|
||
* Given the range to compute the diff on, this method finds the point:
|
||
* (midOriginal, midModified)
|
||
* that exists in the middle of the LCS of the two sequences and
|
||
* is the point at which the LCS problem may be broken down recursively.
|
||
* This method will try to keep the LCS trace in memory. If the LCS recursion
|
||
* point is calculated and the full trace is available in memory, then this method
|
||
* will return the change list.
|
||
* @param originalStart The start bound of the original sequence range
|
||
* @param originalEnd The end bound of the original sequence range
|
||
* @param modifiedStart The start bound of the modified sequence range
|
||
* @param modifiedEnd The end bound of the modified sequence range
|
||
* @param midOriginal The middle point of the original sequence range
|
||
* @param midModified The middle point of the modified sequence range
|
||
* @returns The diff changes, if available, otherwise null
|
||
*/
|
||
ComputeRecursionPoint(originalStart, originalEnd, modifiedStart, modifiedEnd, midOriginalArr, midModifiedArr, quitEarlyArr) {
|
||
let originalIndex = 0, modifiedIndex = 0;
|
||
let diagonalForwardStart = 0, diagonalForwardEnd = 0;
|
||
let diagonalReverseStart = 0, diagonalReverseEnd = 0;
|
||
// To traverse the edit graph and produce the proper LCS, our actual
|
||
// start position is just outside the given boundary
|
||
originalStart--;
|
||
modifiedStart--;
|
||
// We set these up to make the compiler happy, but they will
|
||
// be replaced before we return with the actual recursion point
|
||
midOriginalArr[0] = 0;
|
||
midModifiedArr[0] = 0;
|
||
// Clear out the history
|
||
this.m_forwardHistory = [];
|
||
this.m_reverseHistory = [];
|
||
// Each cell in the two arrays corresponds to a diagonal in the edit graph.
|
||
// The integer value in the cell represents the originalIndex of the furthest
|
||
// reaching point found so far that ends in that diagonal.
|
||
// The modifiedIndex can be computed mathematically from the originalIndex and the diagonal number.
|
||
const maxDifferences = (originalEnd - originalStart) + (modifiedEnd - modifiedStart);
|
||
const numDiagonals = maxDifferences + 1;
|
||
const forwardPoints = new Int32Array(numDiagonals);
|
||
const reversePoints = new Int32Array(numDiagonals);
|
||
// diagonalForwardBase: Index into forwardPoints of the diagonal which passes through (originalStart, modifiedStart)
|
||
// diagonalReverseBase: Index into reversePoints of the diagonal which passes through (originalEnd, modifiedEnd)
|
||
const diagonalForwardBase = (modifiedEnd - modifiedStart);
|
||
const diagonalReverseBase = (originalEnd - originalStart);
|
||
// diagonalForwardOffset: Geometric offset which allows modifiedIndex to be computed from originalIndex and the
|
||
// diagonal number (relative to diagonalForwardBase)
|
||
// diagonalReverseOffset: Geometric offset which allows modifiedIndex to be computed from originalIndex and the
|
||
// diagonal number (relative to diagonalReverseBase)
|
||
const diagonalForwardOffset = (originalStart - modifiedStart);
|
||
const diagonalReverseOffset = (originalEnd - modifiedEnd);
|
||
// delta: The difference between the end diagonal and the start diagonal. This is used to relate diagonal numbers
|
||
// relative to the start diagonal with diagonal numbers relative to the end diagonal.
|
||
// The Even/Oddn-ness of this delta is important for determining when we should check for overlap
|
||
const delta = diagonalReverseBase - diagonalForwardBase;
|
||
const deltaIsEven = (delta % 2 === 0);
|
||
// Here we set up the start and end points as the furthest points found so far
|
||
// in both the forward and reverse directions, respectively
|
||
forwardPoints[diagonalForwardBase] = originalStart;
|
||
reversePoints[diagonalReverseBase] = originalEnd;
|
||
// Remember if we quit early, and thus need to do a best-effort result instead of a real result.
|
||
quitEarlyArr[0] = false;
|
||
// A couple of points:
|
||
// --With this method, we iterate on the number of differences between the two sequences.
|
||
// The more differences there actually are, the longer this will take.
|
||
// --Also, as the number of differences increases, we have to search on diagonals further
|
||
// away from the reference diagonal (which is diagonalForwardBase for forward, diagonalReverseBase for reverse).
|
||
// --We extend on even diagonals (relative to the reference diagonal) only when numDifferences
|
||
// is even and odd diagonals only when numDifferences is odd.
|
||
for (let numDifferences = 1; numDifferences <= (maxDifferences / 2) + 1; numDifferences++) {
|
||
let furthestOriginalIndex = 0;
|
||
let furthestModifiedIndex = 0;
|
||
// Run the algorithm in the forward direction
|
||
diagonalForwardStart = this.ClipDiagonalBound(diagonalForwardBase - numDifferences, numDifferences, diagonalForwardBase, numDiagonals);
|
||
diagonalForwardEnd = this.ClipDiagonalBound(diagonalForwardBase + numDifferences, numDifferences, diagonalForwardBase, numDiagonals);
|
||
for (let diagonal = diagonalForwardStart; diagonal <= diagonalForwardEnd; diagonal += 2) {
|
||
// STEP 1: We extend the furthest reaching point in the present diagonal
|
||
// by looking at the diagonals above and below and picking the one whose point
|
||
// is further away from the start point (originalStart, modifiedStart)
|
||
if (diagonal === diagonalForwardStart || (diagonal < diagonalForwardEnd && forwardPoints[diagonal - 1] < forwardPoints[diagonal + 1])) {
|
||
originalIndex = forwardPoints[diagonal + 1];
|
||
}
|
||
else {
|
||
originalIndex = forwardPoints[diagonal - 1] + 1;
|
||
}
|
||
modifiedIndex = originalIndex - (diagonal - diagonalForwardBase) - diagonalForwardOffset;
|
||
// Save the current originalIndex so we can test for false overlap in step 3
|
||
const tempOriginalIndex = originalIndex;
|
||
// STEP 2: We can continue to extend the furthest reaching point in the present diagonal
|
||
// so long as the elements are equal.
|
||
while (originalIndex < originalEnd && modifiedIndex < modifiedEnd && this.ElementsAreEqual(originalIndex + 1, modifiedIndex + 1)) {
|
||
originalIndex++;
|
||
modifiedIndex++;
|
||
}
|
||
forwardPoints[diagonal] = originalIndex;
|
||
if (originalIndex + modifiedIndex > furthestOriginalIndex + furthestModifiedIndex) {
|
||
furthestOriginalIndex = originalIndex;
|
||
furthestModifiedIndex = modifiedIndex;
|
||
}
|
||
// STEP 3: If delta is odd (overlap first happens on forward when delta is odd)
|
||
// and diagonal is in the range of reverse diagonals computed for numDifferences-1
|
||
// (the previous iteration; we haven't computed reverse diagonals for numDifferences yet)
|
||
// then check for overlap.
|
||
if (!deltaIsEven && Math.abs(diagonal - diagonalReverseBase) <= (numDifferences - 1)) {
|
||
if (originalIndex >= reversePoints[diagonal]) {
|
||
midOriginalArr[0] = originalIndex;
|
||
midModifiedArr[0] = modifiedIndex;
|
||
if (tempOriginalIndex <= reversePoints[diagonal] && 1447 /* LocalConstants.MaxDifferencesHistory */ > 0 && numDifferences <= (1447 /* LocalConstants.MaxDifferencesHistory */ + 1)) {
|
||
// BINGO! We overlapped, and we have the full trace in memory!
|
||
return this.WALKTRACE(diagonalForwardBase, diagonalForwardStart, diagonalForwardEnd, diagonalForwardOffset, diagonalReverseBase, diagonalReverseStart, diagonalReverseEnd, diagonalReverseOffset, forwardPoints, reversePoints, originalIndex, originalEnd, midOriginalArr, modifiedIndex, modifiedEnd, midModifiedArr, deltaIsEven, quitEarlyArr);
|
||
}
|
||
else {
|
||
// Either false overlap, or we didn't have enough memory for the full trace
|
||
// Just return the recursion point
|
||
return null;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
// Check to see if we should be quitting early, before moving on to the next iteration.
|
||
const matchLengthOfLongest = ((furthestOriginalIndex - originalStart) + (furthestModifiedIndex - modifiedStart) - numDifferences) / 2;
|
||
if (this.ContinueProcessingPredicate !== null && !this.ContinueProcessingPredicate(furthestOriginalIndex, matchLengthOfLongest)) {
|
||
// We can't finish, so skip ahead to generating a result from what we have.
|
||
quitEarlyArr[0] = true;
|
||
// Use the furthest distance we got in the forward direction.
|
||
midOriginalArr[0] = furthestOriginalIndex;
|
||
midModifiedArr[0] = furthestModifiedIndex;
|
||
if (matchLengthOfLongest > 0 && 1447 /* LocalConstants.MaxDifferencesHistory */ > 0 && numDifferences <= (1447 /* LocalConstants.MaxDifferencesHistory */ + 1)) {
|
||
// Enough of the history is in memory to walk it backwards
|
||
return this.WALKTRACE(diagonalForwardBase, diagonalForwardStart, diagonalForwardEnd, diagonalForwardOffset, diagonalReverseBase, diagonalReverseStart, diagonalReverseEnd, diagonalReverseOffset, forwardPoints, reversePoints, originalIndex, originalEnd, midOriginalArr, modifiedIndex, modifiedEnd, midModifiedArr, deltaIsEven, quitEarlyArr);
|
||
}
|
||
else {
|
||
// We didn't actually remember enough of the history.
|
||
//Since we are quitting the diff early, we need to shift back the originalStart and modified start
|
||
//back into the boundary limits since we decremented their value above beyond the boundary limit.
|
||
originalStart++;
|
||
modifiedStart++;
|
||
return [
|
||
new diffChange_1.DiffChange(originalStart, originalEnd - originalStart + 1, modifiedStart, modifiedEnd - modifiedStart + 1)
|
||
];
|
||
}
|
||
}
|
||
// Run the algorithm in the reverse direction
|
||
diagonalReverseStart = this.ClipDiagonalBound(diagonalReverseBase - numDifferences, numDifferences, diagonalReverseBase, numDiagonals);
|
||
diagonalReverseEnd = this.ClipDiagonalBound(diagonalReverseBase + numDifferences, numDifferences, diagonalReverseBase, numDiagonals);
|
||
for (let diagonal = diagonalReverseStart; diagonal <= diagonalReverseEnd; diagonal += 2) {
|
||
// STEP 1: We extend the furthest reaching point in the present diagonal
|
||
// by looking at the diagonals above and below and picking the one whose point
|
||
// is further away from the start point (originalEnd, modifiedEnd)
|
||
if (diagonal === diagonalReverseStart || (diagonal < diagonalReverseEnd && reversePoints[diagonal - 1] >= reversePoints[diagonal + 1])) {
|
||
originalIndex = reversePoints[diagonal + 1] - 1;
|
||
}
|
||
else {
|
||
originalIndex = reversePoints[diagonal - 1];
|
||
}
|
||
modifiedIndex = originalIndex - (diagonal - diagonalReverseBase) - diagonalReverseOffset;
|
||
// Save the current originalIndex so we can test for false overlap
|
||
const tempOriginalIndex = originalIndex;
|
||
// STEP 2: We can continue to extend the furthest reaching point in the present diagonal
|
||
// as long as the elements are equal.
|
||
while (originalIndex > originalStart && modifiedIndex > modifiedStart && this.ElementsAreEqual(originalIndex, modifiedIndex)) {
|
||
originalIndex--;
|
||
modifiedIndex--;
|
||
}
|
||
reversePoints[diagonal] = originalIndex;
|
||
// STEP 4: If delta is even (overlap first happens on reverse when delta is even)
|
||
// and diagonal is in the range of forward diagonals computed for numDifferences
|
||
// then check for overlap.
|
||
if (deltaIsEven && Math.abs(diagonal - diagonalForwardBase) <= numDifferences) {
|
||
if (originalIndex <= forwardPoints[diagonal]) {
|
||
midOriginalArr[0] = originalIndex;
|
||
midModifiedArr[0] = modifiedIndex;
|
||
if (tempOriginalIndex >= forwardPoints[diagonal] && 1447 /* LocalConstants.MaxDifferencesHistory */ > 0 && numDifferences <= (1447 /* LocalConstants.MaxDifferencesHistory */ + 1)) {
|
||
// BINGO! We overlapped, and we have the full trace in memory!
|
||
return this.WALKTRACE(diagonalForwardBase, diagonalForwardStart, diagonalForwardEnd, diagonalForwardOffset, diagonalReverseBase, diagonalReverseStart, diagonalReverseEnd, diagonalReverseOffset, forwardPoints, reversePoints, originalIndex, originalEnd, midOriginalArr, modifiedIndex, modifiedEnd, midModifiedArr, deltaIsEven, quitEarlyArr);
|
||
}
|
||
else {
|
||
// Either false overlap, or we didn't have enough memory for the full trace
|
||
// Just return the recursion point
|
||
return null;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
// Save current vectors to history before the next iteration
|
||
if (numDifferences <= 1447 /* LocalConstants.MaxDifferencesHistory */) {
|
||
// We are allocating space for one extra int, which we fill with
|
||
// the index of the diagonal base index
|
||
let temp = new Int32Array(diagonalForwardEnd - diagonalForwardStart + 2);
|
||
temp[0] = diagonalForwardBase - diagonalForwardStart + 1;
|
||
MyArray.Copy2(forwardPoints, diagonalForwardStart, temp, 1, diagonalForwardEnd - diagonalForwardStart + 1);
|
||
this.m_forwardHistory.push(temp);
|
||
temp = new Int32Array(diagonalReverseEnd - diagonalReverseStart + 2);
|
||
temp[0] = diagonalReverseBase - diagonalReverseStart + 1;
|
||
MyArray.Copy2(reversePoints, diagonalReverseStart, temp, 1, diagonalReverseEnd - diagonalReverseStart + 1);
|
||
this.m_reverseHistory.push(temp);
|
||
}
|
||
}
|
||
// If we got here, then we have the full trace in history. We just have to convert it to a change list
|
||
// NOTE: This part is a bit messy
|
||
return this.WALKTRACE(diagonalForwardBase, diagonalForwardStart, diagonalForwardEnd, diagonalForwardOffset, diagonalReverseBase, diagonalReverseStart, diagonalReverseEnd, diagonalReverseOffset, forwardPoints, reversePoints, originalIndex, originalEnd, midOriginalArr, modifiedIndex, modifiedEnd, midModifiedArr, deltaIsEven, quitEarlyArr);
|
||
}
|
||
/**
|
||
* Shifts the given changes to provide a more intuitive diff.
|
||
* While the first element in a diff matches the first element after the diff,
|
||
* we shift the diff down.
|
||
*
|
||
* @param changes The list of changes to shift
|
||
* @returns The shifted changes
|
||
*/
|
||
PrettifyChanges(changes) {
|
||
// Shift all the changes down first
|
||
for (let i = 0; i < changes.length; i++) {
|
||
const change = changes[i];
|
||
const originalStop = (i < changes.length - 1) ? changes[i + 1].originalStart : this._originalElementsOrHash.length;
|
||
const modifiedStop = (i < changes.length - 1) ? changes[i + 1].modifiedStart : this._modifiedElementsOrHash.length;
|
||
const checkOriginal = change.originalLength > 0;
|
||
const checkModified = change.modifiedLength > 0;
|
||
while (change.originalStart + change.originalLength < originalStop
|
||
&& change.modifiedStart + change.modifiedLength < modifiedStop
|
||
&& (!checkOriginal || this.OriginalElementsAreEqual(change.originalStart, change.originalStart + change.originalLength))
|
||
&& (!checkModified || this.ModifiedElementsAreEqual(change.modifiedStart, change.modifiedStart + change.modifiedLength))) {
|
||
const startStrictEqual = this.ElementsAreStrictEqual(change.originalStart, change.modifiedStart);
|
||
const endStrictEqual = this.ElementsAreStrictEqual(change.originalStart + change.originalLength, change.modifiedStart + change.modifiedLength);
|
||
if (endStrictEqual && !startStrictEqual) {
|
||
// moving the change down would create an equal change, but the elements are not strict equal
|
||
break;
|
||
}
|
||
change.originalStart++;
|
||
change.modifiedStart++;
|
||
}
|
||
const mergedChangeArr = [null];
|
||
if (i < changes.length - 1 && this.ChangesOverlap(changes[i], changes[i + 1], mergedChangeArr)) {
|
||
changes[i] = mergedChangeArr[0];
|
||
changes.splice(i + 1, 1);
|
||
i--;
|
||
continue;
|
||
}
|
||
}
|
||
// Shift changes back up until we hit empty or whitespace-only lines
|
||
for (let i = changes.length - 1; i >= 0; i--) {
|
||
const change = changes[i];
|
||
let originalStop = 0;
|
||
let modifiedStop = 0;
|
||
if (i > 0) {
|
||
const prevChange = changes[i - 1];
|
||
originalStop = prevChange.originalStart + prevChange.originalLength;
|
||
modifiedStop = prevChange.modifiedStart + prevChange.modifiedLength;
|
||
}
|
||
const checkOriginal = change.originalLength > 0;
|
||
const checkModified = change.modifiedLength > 0;
|
||
let bestDelta = 0;
|
||
let bestScore = this._boundaryScore(change.originalStart, change.originalLength, change.modifiedStart, change.modifiedLength);
|
||
for (let delta = 1;; delta++) {
|
||
const originalStart = change.originalStart - delta;
|
||
const modifiedStart = change.modifiedStart - delta;
|
||
if (originalStart < originalStop || modifiedStart < modifiedStop) {
|
||
break;
|
||
}
|
||
if (checkOriginal && !this.OriginalElementsAreEqual(originalStart, originalStart + change.originalLength)) {
|
||
break;
|
||
}
|
||
if (checkModified && !this.ModifiedElementsAreEqual(modifiedStart, modifiedStart + change.modifiedLength)) {
|
||
break;
|
||
}
|
||
const touchingPreviousChange = (originalStart === originalStop && modifiedStart === modifiedStop);
|
||
const score = ((touchingPreviousChange ? 5 : 0)
|
||
+ this._boundaryScore(originalStart, change.originalLength, modifiedStart, change.modifiedLength));
|
||
if (score > bestScore) {
|
||
bestScore = score;
|
||
bestDelta = delta;
|
||
}
|
||
}
|
||
change.originalStart -= bestDelta;
|
||
change.modifiedStart -= bestDelta;
|
||
const mergedChangeArr = [null];
|
||
if (i > 0 && this.ChangesOverlap(changes[i - 1], changes[i], mergedChangeArr)) {
|
||
changes[i - 1] = mergedChangeArr[0];
|
||
changes.splice(i, 1);
|
||
i++;
|
||
continue;
|
||
}
|
||
}
|
||
// There could be multiple longest common substrings.
|
||
// Give preference to the ones containing longer lines
|
||
if (this._hasStrings) {
|
||
for (let i = 1, len = changes.length; i < len; i++) {
|
||
const aChange = changes[i - 1];
|
||
const bChange = changes[i];
|
||
const matchedLength = bChange.originalStart - aChange.originalStart - aChange.originalLength;
|
||
const aOriginalStart = aChange.originalStart;
|
||
const bOriginalEnd = bChange.originalStart + bChange.originalLength;
|
||
const abOriginalLength = bOriginalEnd - aOriginalStart;
|
||
const aModifiedStart = aChange.modifiedStart;
|
||
const bModifiedEnd = bChange.modifiedStart + bChange.modifiedLength;
|
||
const abModifiedLength = bModifiedEnd - aModifiedStart;
|
||
// Avoid wasting a lot of time with these searches
|
||
if (matchedLength < 5 && abOriginalLength < 20 && abModifiedLength < 20) {
|
||
const t = this._findBetterContiguousSequence(aOriginalStart, abOriginalLength, aModifiedStart, abModifiedLength, matchedLength);
|
||
if (t) {
|
||
const [originalMatchStart, modifiedMatchStart] = t;
|
||
if (originalMatchStart !== aChange.originalStart + aChange.originalLength || modifiedMatchStart !== aChange.modifiedStart + aChange.modifiedLength) {
|
||
// switch to another sequence that has a better score
|
||
aChange.originalLength = originalMatchStart - aChange.originalStart;
|
||
aChange.modifiedLength = modifiedMatchStart - aChange.modifiedStart;
|
||
bChange.originalStart = originalMatchStart + matchedLength;
|
||
bChange.modifiedStart = modifiedMatchStart + matchedLength;
|
||
bChange.originalLength = bOriginalEnd - bChange.originalStart;
|
||
bChange.modifiedLength = bModifiedEnd - bChange.modifiedStart;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return changes;
|
||
}
|
||
_findBetterContiguousSequence(originalStart, originalLength, modifiedStart, modifiedLength, desiredLength) {
|
||
if (originalLength < desiredLength || modifiedLength < desiredLength) {
|
||
return null;
|
||
}
|
||
const originalMax = originalStart + originalLength - desiredLength + 1;
|
||
const modifiedMax = modifiedStart + modifiedLength - desiredLength + 1;
|
||
let bestScore = 0;
|
||
let bestOriginalStart = 0;
|
||
let bestModifiedStart = 0;
|
||
for (let i = originalStart; i < originalMax; i++) {
|
||
for (let j = modifiedStart; j < modifiedMax; j++) {
|
||
const score = this._contiguousSequenceScore(i, j, desiredLength);
|
||
if (score > 0 && score > bestScore) {
|
||
bestScore = score;
|
||
bestOriginalStart = i;
|
||
bestModifiedStart = j;
|
||
}
|
||
}
|
||
}
|
||
if (bestScore > 0) {
|
||
return [bestOriginalStart, bestModifiedStart];
|
||
}
|
||
return null;
|
||
}
|
||
_contiguousSequenceScore(originalStart, modifiedStart, length) {
|
||
let score = 0;
|
||
for (let l = 0; l < length; l++) {
|
||
if (!this.ElementsAreEqual(originalStart + l, modifiedStart + l)) {
|
||
return 0;
|
||
}
|
||
score += this._originalStringElements[originalStart + l].length;
|
||
}
|
||
return score;
|
||
}
|
||
_OriginalIsBoundary(index) {
|
||
if (index <= 0 || index >= this._originalElementsOrHash.length - 1) {
|
||
return true;
|
||
}
|
||
return (this._hasStrings && /^\s*$/.test(this._originalStringElements[index]));
|
||
}
|
||
_OriginalRegionIsBoundary(originalStart, originalLength) {
|
||
if (this._OriginalIsBoundary(originalStart) || this._OriginalIsBoundary(originalStart - 1)) {
|
||
return true;
|
||
}
|
||
if (originalLength > 0) {
|
||
const originalEnd = originalStart + originalLength;
|
||
if (this._OriginalIsBoundary(originalEnd - 1) || this._OriginalIsBoundary(originalEnd)) {
|
||
return true;
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
_ModifiedIsBoundary(index) {
|
||
if (index <= 0 || index >= this._modifiedElementsOrHash.length - 1) {
|
||
return true;
|
||
}
|
||
return (this._hasStrings && /^\s*$/.test(this._modifiedStringElements[index]));
|
||
}
|
||
_ModifiedRegionIsBoundary(modifiedStart, modifiedLength) {
|
||
if (this._ModifiedIsBoundary(modifiedStart) || this._ModifiedIsBoundary(modifiedStart - 1)) {
|
||
return true;
|
||
}
|
||
if (modifiedLength > 0) {
|
||
const modifiedEnd = modifiedStart + modifiedLength;
|
||
if (this._ModifiedIsBoundary(modifiedEnd - 1) || this._ModifiedIsBoundary(modifiedEnd)) {
|
||
return true;
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
_boundaryScore(originalStart, originalLength, modifiedStart, modifiedLength) {
|
||
const originalScore = (this._OriginalRegionIsBoundary(originalStart, originalLength) ? 1 : 0);
|
||
const modifiedScore = (this._ModifiedRegionIsBoundary(modifiedStart, modifiedLength) ? 1 : 0);
|
||
return (originalScore + modifiedScore);
|
||
}
|
||
/**
|
||
* Concatenates the two input DiffChange lists and returns the resulting
|
||
* list.
|
||
* @param The left changes
|
||
* @param The right changes
|
||
* @returns The concatenated list
|
||
*/
|
||
ConcatenateChanges(left, right) {
|
||
const mergedChangeArr = [];
|
||
if (left.length === 0 || right.length === 0) {
|
||
return (right.length > 0) ? right : left;
|
||
}
|
||
else if (this.ChangesOverlap(left[left.length - 1], right[0], mergedChangeArr)) {
|
||
// Since we break the problem down recursively, it is possible that we
|
||
// might recurse in the middle of a change thereby splitting it into
|
||
// two changes. Here in the combining stage, we detect and fuse those
|
||
// changes back together
|
||
const result = new Array(left.length + right.length - 1);
|
||
MyArray.Copy(left, 0, result, 0, left.length - 1);
|
||
result[left.length - 1] = mergedChangeArr[0];
|
||
MyArray.Copy(right, 1, result, left.length, right.length - 1);
|
||
return result;
|
||
}
|
||
else {
|
||
const result = new Array(left.length + right.length);
|
||
MyArray.Copy(left, 0, result, 0, left.length);
|
||
MyArray.Copy(right, 0, result, left.length, right.length);
|
||
return result;
|
||
}
|
||
}
|
||
/**
|
||
* Returns true if the two changes overlap and can be merged into a single
|
||
* change
|
||
* @param left The left change
|
||
* @param right The right change
|
||
* @param mergedChange The merged change if the two overlap, null otherwise
|
||
* @returns True if the two changes overlap
|
||
*/
|
||
ChangesOverlap(left, right, mergedChangeArr) {
|
||
Debug.Assert(left.originalStart <= right.originalStart, 'Left change is not less than or equal to right change');
|
||
Debug.Assert(left.modifiedStart <= right.modifiedStart, 'Left change is not less than or equal to right change');
|
||
if (left.originalStart + left.originalLength >= right.originalStart || left.modifiedStart + left.modifiedLength >= right.modifiedStart) {
|
||
const originalStart = left.originalStart;
|
||
let originalLength = left.originalLength;
|
||
const modifiedStart = left.modifiedStart;
|
||
let modifiedLength = left.modifiedLength;
|
||
if (left.originalStart + left.originalLength >= right.originalStart) {
|
||
originalLength = right.originalStart + right.originalLength - left.originalStart;
|
||
}
|
||
if (left.modifiedStart + left.modifiedLength >= right.modifiedStart) {
|
||
modifiedLength = right.modifiedStart + right.modifiedLength - left.modifiedStart;
|
||
}
|
||
mergedChangeArr[0] = new diffChange_1.DiffChange(originalStart, originalLength, modifiedStart, modifiedLength);
|
||
return true;
|
||
}
|
||
else {
|
||
mergedChangeArr[0] = null;
|
||
return false;
|
||
}
|
||
}
|
||
/**
|
||
* Helper method used to clip a diagonal index to the range of valid
|
||
* diagonals. This also decides whether or not the diagonal index,
|
||
* if it exceeds the boundary, should be clipped to the boundary or clipped
|
||
* one inside the boundary depending on the Even/Odd status of the boundary
|
||
* and numDifferences.
|
||
* @param diagonal The index of the diagonal to clip.
|
||
* @param numDifferences The current number of differences being iterated upon.
|
||
* @param diagonalBaseIndex The base reference diagonal.
|
||
* @param numDiagonals The total number of diagonals.
|
||
* @returns The clipped diagonal index.
|
||
*/
|
||
ClipDiagonalBound(diagonal, numDifferences, diagonalBaseIndex, numDiagonals) {
|
||
if (diagonal >= 0 && diagonal < numDiagonals) {
|
||
// Nothing to clip, its in range
|
||
return diagonal;
|
||
}
|
||
// diagonalsBelow: The number of diagonals below the reference diagonal
|
||
// diagonalsAbove: The number of diagonals above the reference diagonal
|
||
const diagonalsBelow = diagonalBaseIndex;
|
||
const diagonalsAbove = numDiagonals - diagonalBaseIndex - 1;
|
||
const diffEven = (numDifferences % 2 === 0);
|
||
if (diagonal < 0) {
|
||
const lowerBoundEven = (diagonalsBelow % 2 === 0);
|
||
return (diffEven === lowerBoundEven) ? 0 : 1;
|
||
}
|
||
else {
|
||
const upperBoundEven = (diagonalsAbove % 2 === 0);
|
||
return (diffEven === upperBoundEven) ? numDiagonals - 1 : numDiagonals - 2;
|
||
}
|
||
}
|
||
}
|
||
exports.LcsDiff = LcsDiff;
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[45/*vs/base/common/symbols*/], __M([0/*require*/,1/*exports*/]), function (require, exports) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.MicrotaskDelay = void 0;
|
||
/**
|
||
* Can be passed into the Delayed to defer using a microtask
|
||
* */
|
||
exports.MicrotaskDelay = Symbol('MicrotaskDelay');
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[25/*vs/base/common/types*/], __M([0/*require*/,1/*exports*/]), function (require, exports) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.isString = isString;
|
||
exports.isObject = isObject;
|
||
exports.isTypedArray = isTypedArray;
|
||
exports.isNumber = isNumber;
|
||
exports.isIterable = isIterable;
|
||
exports.isBoolean = isBoolean;
|
||
exports.isUndefined = isUndefined;
|
||
exports.isDefined = isDefined;
|
||
exports.isUndefinedOrNull = isUndefinedOrNull;
|
||
exports.assertType = assertType;
|
||
exports.assertIsDefined = assertIsDefined;
|
||
exports.isFunction = isFunction;
|
||
exports.validateConstraints = validateConstraints;
|
||
exports.validateConstraint = validateConstraint;
|
||
/**
|
||
* @returns whether the provided parameter is a JavaScript String or not.
|
||
*/
|
||
function isString(str) {
|
||
return (typeof str === 'string');
|
||
}
|
||
/**
|
||
* @returns whether the provided parameter is of type `object` but **not**
|
||
* `null`, an `array`, a `regexp`, nor a `date`.
|
||
*/
|
||
function isObject(obj) {
|
||
// The method can't do a type cast since there are type (like strings) which
|
||
// are subclasses of any put not positvely matched by the function. Hence type
|
||
// narrowing results in wrong results.
|
||
return typeof obj === 'object'
|
||
&& obj !== null
|
||
&& !Array.isArray(obj)
|
||
&& !(obj instanceof RegExp)
|
||
&& !(obj instanceof Date);
|
||
}
|
||
/**
|
||
* @returns whether the provided parameter is of type `Buffer` or Uint8Array dervived type
|
||
*/
|
||
function isTypedArray(obj) {
|
||
const TypedArray = Object.getPrototypeOf(Uint8Array);
|
||
return typeof obj === 'object'
|
||
&& obj instanceof TypedArray;
|
||
}
|
||
/**
|
||
* In **contrast** to just checking `typeof` this will return `false` for `NaN`.
|
||
* @returns whether the provided parameter is a JavaScript Number or not.
|
||
*/
|
||
function isNumber(obj) {
|
||
return (typeof obj === 'number' && !isNaN(obj));
|
||
}
|
||
/**
|
||
* @returns whether the provided parameter is an Iterable, casting to the given generic
|
||
*/
|
||
function isIterable(obj) {
|
||
return !!obj && typeof obj[Symbol.iterator] === 'function';
|
||
}
|
||
/**
|
||
* @returns whether the provided parameter is a JavaScript Boolean or not.
|
||
*/
|
||
function isBoolean(obj) {
|
||
return (obj === true || obj === false);
|
||
}
|
||
/**
|
||
* @returns whether the provided parameter is undefined.
|
||
*/
|
||
function isUndefined(obj) {
|
||
return (typeof obj === 'undefined');
|
||
}
|
||
/**
|
||
* @returns whether the provided parameter is defined.
|
||
*/
|
||
function isDefined(arg) {
|
||
return !isUndefinedOrNull(arg);
|
||
}
|
||
/**
|
||
* @returns whether the provided parameter is undefined or null.
|
||
*/
|
||
function isUndefinedOrNull(obj) {
|
||
return (isUndefined(obj) || obj === null);
|
||
}
|
||
function assertType(condition, type) {
|
||
if (!condition) {
|
||
throw new Error(type ? `Unexpected type, expected '${type}'` : 'Unexpected type');
|
||
}
|
||
}
|
||
/**
|
||
* Asserts that the argument passed in is neither undefined nor null.
|
||
*/
|
||
function assertIsDefined(arg) {
|
||
if (isUndefinedOrNull(arg)) {
|
||
throw new Error('Assertion Failed: argument is undefined or null');
|
||
}
|
||
return arg;
|
||
}
|
||
/**
|
||
* @returns whether the provided parameter is a JavaScript Function or not.
|
||
*/
|
||
function isFunction(obj) {
|
||
return (typeof obj === 'function');
|
||
}
|
||
function validateConstraints(args, constraints) {
|
||
const len = Math.min(args.length, constraints.length);
|
||
for (let i = 0; i < len; i++) {
|
||
validateConstraint(args[i], constraints[i]);
|
||
}
|
||
}
|
||
function validateConstraint(arg, constraint) {
|
||
if (isString(constraint)) {
|
||
if (typeof arg !== constraint) {
|
||
throw new Error(`argument does not match constraint: typeof ${constraint}`);
|
||
}
|
||
}
|
||
else if (isFunction(constraint)) {
|
||
try {
|
||
if (arg instanceof constraint) {
|
||
return;
|
||
}
|
||
}
|
||
catch {
|
||
// ignore
|
||
}
|
||
if (!isUndefinedOrNull(arg) && arg.constructor === constraint) {
|
||
return;
|
||
}
|
||
if (constraint.length === 1 && constraint.call(undefined, arg) === true) {
|
||
return;
|
||
}
|
||
throw new Error(`argument does not match one of these constraints: arg instanceof constraint, arg.constructor === constraint, nor constraint(arg) === true`);
|
||
}
|
||
}
|
||
});
|
||
|
||
define(__m[26/*vs/base/common/codiconsUtil*/], __M([0/*require*/,1/*exports*/,25/*vs/base/common/types*/]), function (require, exports, types_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.register = register;
|
||
exports.getCodiconFontCharacters = getCodiconFontCharacters;
|
||
const _codiconFontCharacters = Object.create(null);
|
||
function register(id, fontCharacter) {
|
||
if ((0, types_1.isString)(fontCharacter)) {
|
||
const val = _codiconFontCharacters[fontCharacter];
|
||
if (val === undefined) {
|
||
throw new Error(`${id} references an unknown codicon: ${fontCharacter}`);
|
||
}
|
||
fontCharacter = val;
|
||
}
|
||
_codiconFontCharacters[id] = fontCharacter;
|
||
return { id };
|
||
}
|
||
/**
|
||
* Only to be used by the iconRegistry.
|
||
*/
|
||
function getCodiconFontCharacters() {
|
||
return _codiconFontCharacters;
|
||
}
|
||
});
|
||
|
||
define(__m[46/*vs/base/common/codiconsLibrary*/], __M([0/*require*/,1/*exports*/,26/*vs/base/common/codiconsUtil*/]), function (require, exports, codiconsUtil_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.codiconsLibrary = void 0;
|
||
// This file is automatically generated by (microsoft/vscode-codicons)/scripts/export-to-ts.js
|
||
// Please don't edit it, as your changes will be overwritten.
|
||
// Instead, add mappings to codiconsDerived in codicons.ts.
|
||
exports.codiconsLibrary = {
|
||
add: (0, codiconsUtil_1.register)('add', 0xea60),
|
||
plus: (0, codiconsUtil_1.register)('plus', 0xea60),
|
||
gistNew: (0, codiconsUtil_1.register)('gist-new', 0xea60),
|
||
repoCreate: (0, codiconsUtil_1.register)('repo-create', 0xea60),
|
||
lightbulb: (0, codiconsUtil_1.register)('lightbulb', 0xea61),
|
||
lightBulb: (0, codiconsUtil_1.register)('light-bulb', 0xea61),
|
||
repo: (0, codiconsUtil_1.register)('repo', 0xea62),
|
||
repoDelete: (0, codiconsUtil_1.register)('repo-delete', 0xea62),
|
||
gistFork: (0, codiconsUtil_1.register)('gist-fork', 0xea63),
|
||
repoForked: (0, codiconsUtil_1.register)('repo-forked', 0xea63),
|
||
gitPullRequest: (0, codiconsUtil_1.register)('git-pull-request', 0xea64),
|
||
gitPullRequestAbandoned: (0, codiconsUtil_1.register)('git-pull-request-abandoned', 0xea64),
|
||
recordKeys: (0, codiconsUtil_1.register)('record-keys', 0xea65),
|
||
keyboard: (0, codiconsUtil_1.register)('keyboard', 0xea65),
|
||
tag: (0, codiconsUtil_1.register)('tag', 0xea66),
|
||
gitPullRequestLabel: (0, codiconsUtil_1.register)('git-pull-request-label', 0xea66),
|
||
tagAdd: (0, codiconsUtil_1.register)('tag-add', 0xea66),
|
||
tagRemove: (0, codiconsUtil_1.register)('tag-remove', 0xea66),
|
||
person: (0, codiconsUtil_1.register)('person', 0xea67),
|
||
personFollow: (0, codiconsUtil_1.register)('person-follow', 0xea67),
|
||
personOutline: (0, codiconsUtil_1.register)('person-outline', 0xea67),
|
||
personFilled: (0, codiconsUtil_1.register)('person-filled', 0xea67),
|
||
gitBranch: (0, codiconsUtil_1.register)('git-branch', 0xea68),
|
||
gitBranchCreate: (0, codiconsUtil_1.register)('git-branch-create', 0xea68),
|
||
gitBranchDelete: (0, codiconsUtil_1.register)('git-branch-delete', 0xea68),
|
||
sourceControl: (0, codiconsUtil_1.register)('source-control', 0xea68),
|
||
mirror: (0, codiconsUtil_1.register)('mirror', 0xea69),
|
||
mirrorPublic: (0, codiconsUtil_1.register)('mirror-public', 0xea69),
|
||
star: (0, codiconsUtil_1.register)('star', 0xea6a),
|
||
starAdd: (0, codiconsUtil_1.register)('star-add', 0xea6a),
|
||
starDelete: (0, codiconsUtil_1.register)('star-delete', 0xea6a),
|
||
starEmpty: (0, codiconsUtil_1.register)('star-empty', 0xea6a),
|
||
comment: (0, codiconsUtil_1.register)('comment', 0xea6b),
|
||
commentAdd: (0, codiconsUtil_1.register)('comment-add', 0xea6b),
|
||
alert: (0, codiconsUtil_1.register)('alert', 0xea6c),
|
||
warning: (0, codiconsUtil_1.register)('warning', 0xea6c),
|
||
search: (0, codiconsUtil_1.register)('search', 0xea6d),
|
||
searchSave: (0, codiconsUtil_1.register)('search-save', 0xea6d),
|
||
logOut: (0, codiconsUtil_1.register)('log-out', 0xea6e),
|
||
signOut: (0, codiconsUtil_1.register)('sign-out', 0xea6e),
|
||
logIn: (0, codiconsUtil_1.register)('log-in', 0xea6f),
|
||
signIn: (0, codiconsUtil_1.register)('sign-in', 0xea6f),
|
||
eye: (0, codiconsUtil_1.register)('eye', 0xea70),
|
||
eyeUnwatch: (0, codiconsUtil_1.register)('eye-unwatch', 0xea70),
|
||
eyeWatch: (0, codiconsUtil_1.register)('eye-watch', 0xea70),
|
||
circleFilled: (0, codiconsUtil_1.register)('circle-filled', 0xea71),
|
||
primitiveDot: (0, codiconsUtil_1.register)('primitive-dot', 0xea71),
|
||
closeDirty: (0, codiconsUtil_1.register)('close-dirty', 0xea71),
|
||
debugBreakpoint: (0, codiconsUtil_1.register)('debug-breakpoint', 0xea71),
|
||
debugBreakpointDisabled: (0, codiconsUtil_1.register)('debug-breakpoint-disabled', 0xea71),
|
||
debugHint: (0, codiconsUtil_1.register)('debug-hint', 0xea71),
|
||
terminalDecorationSuccess: (0, codiconsUtil_1.register)('terminal-decoration-success', 0xea71),
|
||
primitiveSquare: (0, codiconsUtil_1.register)('primitive-square', 0xea72),
|
||
edit: (0, codiconsUtil_1.register)('edit', 0xea73),
|
||
pencil: (0, codiconsUtil_1.register)('pencil', 0xea73),
|
||
info: (0, codiconsUtil_1.register)('info', 0xea74),
|
||
issueOpened: (0, codiconsUtil_1.register)('issue-opened', 0xea74),
|
||
gistPrivate: (0, codiconsUtil_1.register)('gist-private', 0xea75),
|
||
gitForkPrivate: (0, codiconsUtil_1.register)('git-fork-private', 0xea75),
|
||
lock: (0, codiconsUtil_1.register)('lock', 0xea75),
|
||
mirrorPrivate: (0, codiconsUtil_1.register)('mirror-private', 0xea75),
|
||
close: (0, codiconsUtil_1.register)('close', 0xea76),
|
||
removeClose: (0, codiconsUtil_1.register)('remove-close', 0xea76),
|
||
x: (0, codiconsUtil_1.register)('x', 0xea76),
|
||
repoSync: (0, codiconsUtil_1.register)('repo-sync', 0xea77),
|
||
sync: (0, codiconsUtil_1.register)('sync', 0xea77),
|
||
clone: (0, codiconsUtil_1.register)('clone', 0xea78),
|
||
desktopDownload: (0, codiconsUtil_1.register)('desktop-download', 0xea78),
|
||
beaker: (0, codiconsUtil_1.register)('beaker', 0xea79),
|
||
microscope: (0, codiconsUtil_1.register)('microscope', 0xea79),
|
||
vm: (0, codiconsUtil_1.register)('vm', 0xea7a),
|
||
deviceDesktop: (0, codiconsUtil_1.register)('device-desktop', 0xea7a),
|
||
file: (0, codiconsUtil_1.register)('file', 0xea7b),
|
||
fileText: (0, codiconsUtil_1.register)('file-text', 0xea7b),
|
||
more: (0, codiconsUtil_1.register)('more', 0xea7c),
|
||
ellipsis: (0, codiconsUtil_1.register)('ellipsis', 0xea7c),
|
||
kebabHorizontal: (0, codiconsUtil_1.register)('kebab-horizontal', 0xea7c),
|
||
mailReply: (0, codiconsUtil_1.register)('mail-reply', 0xea7d),
|
||
reply: (0, codiconsUtil_1.register)('reply', 0xea7d),
|
||
organization: (0, codiconsUtil_1.register)('organization', 0xea7e),
|
||
organizationFilled: (0, codiconsUtil_1.register)('organization-filled', 0xea7e),
|
||
organizationOutline: (0, codiconsUtil_1.register)('organization-outline', 0xea7e),
|
||
newFile: (0, codiconsUtil_1.register)('new-file', 0xea7f),
|
||
fileAdd: (0, codiconsUtil_1.register)('file-add', 0xea7f),
|
||
newFolder: (0, codiconsUtil_1.register)('new-folder', 0xea80),
|
||
fileDirectoryCreate: (0, codiconsUtil_1.register)('file-directory-create', 0xea80),
|
||
trash: (0, codiconsUtil_1.register)('trash', 0xea81),
|
||
trashcan: (0, codiconsUtil_1.register)('trashcan', 0xea81),
|
||
history: (0, codiconsUtil_1.register)('history', 0xea82),
|
||
clock: (0, codiconsUtil_1.register)('clock', 0xea82),
|
||
folder: (0, codiconsUtil_1.register)('folder', 0xea83),
|
||
fileDirectory: (0, codiconsUtil_1.register)('file-directory', 0xea83),
|
||
symbolFolder: (0, codiconsUtil_1.register)('symbol-folder', 0xea83),
|
||
logoGithub: (0, codiconsUtil_1.register)('logo-github', 0xea84),
|
||
markGithub: (0, codiconsUtil_1.register)('mark-github', 0xea84),
|
||
github: (0, codiconsUtil_1.register)('github', 0xea84),
|
||
terminal: (0, codiconsUtil_1.register)('terminal', 0xea85),
|
||
console: (0, codiconsUtil_1.register)('console', 0xea85),
|
||
repl: (0, codiconsUtil_1.register)('repl', 0xea85),
|
||
zap: (0, codiconsUtil_1.register)('zap', 0xea86),
|
||
symbolEvent: (0, codiconsUtil_1.register)('symbol-event', 0xea86),
|
||
error: (0, codiconsUtil_1.register)('error', 0xea87),
|
||
stop: (0, codiconsUtil_1.register)('stop', 0xea87),
|
||
variable: (0, codiconsUtil_1.register)('variable', 0xea88),
|
||
symbolVariable: (0, codiconsUtil_1.register)('symbol-variable', 0xea88),
|
||
array: (0, codiconsUtil_1.register)('array', 0xea8a),
|
||
symbolArray: (0, codiconsUtil_1.register)('symbol-array', 0xea8a),
|
||
symbolModule: (0, codiconsUtil_1.register)('symbol-module', 0xea8b),
|
||
symbolPackage: (0, codiconsUtil_1.register)('symbol-package', 0xea8b),
|
||
symbolNamespace: (0, codiconsUtil_1.register)('symbol-namespace', 0xea8b),
|
||
symbolObject: (0, codiconsUtil_1.register)('symbol-object', 0xea8b),
|
||
symbolMethod: (0, codiconsUtil_1.register)('symbol-method', 0xea8c),
|
||
symbolFunction: (0, codiconsUtil_1.register)('symbol-function', 0xea8c),
|
||
symbolConstructor: (0, codiconsUtil_1.register)('symbol-constructor', 0xea8c),
|
||
symbolBoolean: (0, codiconsUtil_1.register)('symbol-boolean', 0xea8f),
|
||
symbolNull: (0, codiconsUtil_1.register)('symbol-null', 0xea8f),
|
||
symbolNumeric: (0, codiconsUtil_1.register)('symbol-numeric', 0xea90),
|
||
symbolNumber: (0, codiconsUtil_1.register)('symbol-number', 0xea90),
|
||
symbolStructure: (0, codiconsUtil_1.register)('symbol-structure', 0xea91),
|
||
symbolStruct: (0, codiconsUtil_1.register)('symbol-struct', 0xea91),
|
||
symbolParameter: (0, codiconsUtil_1.register)('symbol-parameter', 0xea92),
|
||
symbolTypeParameter: (0, codiconsUtil_1.register)('symbol-type-parameter', 0xea92),
|
||
symbolKey: (0, codiconsUtil_1.register)('symbol-key', 0xea93),
|
||
symbolText: (0, codiconsUtil_1.register)('symbol-text', 0xea93),
|
||
symbolReference: (0, codiconsUtil_1.register)('symbol-reference', 0xea94),
|
||
goToFile: (0, codiconsUtil_1.register)('go-to-file', 0xea94),
|
||
symbolEnum: (0, codiconsUtil_1.register)('symbol-enum', 0xea95),
|
||
symbolValue: (0, codiconsUtil_1.register)('symbol-value', 0xea95),
|
||
symbolRuler: (0, codiconsUtil_1.register)('symbol-ruler', 0xea96),
|
||
symbolUnit: (0, codiconsUtil_1.register)('symbol-unit', 0xea96),
|
||
activateBreakpoints: (0, codiconsUtil_1.register)('activate-breakpoints', 0xea97),
|
||
archive: (0, codiconsUtil_1.register)('archive', 0xea98),
|
||
arrowBoth: (0, codiconsUtil_1.register)('arrow-both', 0xea99),
|
||
arrowDown: (0, codiconsUtil_1.register)('arrow-down', 0xea9a),
|
||
arrowLeft: (0, codiconsUtil_1.register)('arrow-left', 0xea9b),
|
||
arrowRight: (0, codiconsUtil_1.register)('arrow-right', 0xea9c),
|
||
arrowSmallDown: (0, codiconsUtil_1.register)('arrow-small-down', 0xea9d),
|
||
arrowSmallLeft: (0, codiconsUtil_1.register)('arrow-small-left', 0xea9e),
|
||
arrowSmallRight: (0, codiconsUtil_1.register)('arrow-small-right', 0xea9f),
|
||
arrowSmallUp: (0, codiconsUtil_1.register)('arrow-small-up', 0xeaa0),
|
||
arrowUp: (0, codiconsUtil_1.register)('arrow-up', 0xeaa1),
|
||
bell: (0, codiconsUtil_1.register)('bell', 0xeaa2),
|
||
bold: (0, codiconsUtil_1.register)('bold', 0xeaa3),
|
||
book: (0, codiconsUtil_1.register)('book', 0xeaa4),
|
||
bookmark: (0, codiconsUtil_1.register)('bookmark', 0xeaa5),
|
||
debugBreakpointConditionalUnverified: (0, codiconsUtil_1.register)('debug-breakpoint-conditional-unverified', 0xeaa6),
|
||
debugBreakpointConditional: (0, codiconsUtil_1.register)('debug-breakpoint-conditional', 0xeaa7),
|
||
debugBreakpointConditionalDisabled: (0, codiconsUtil_1.register)('debug-breakpoint-conditional-disabled', 0xeaa7),
|
||
debugBreakpointDataUnverified: (0, codiconsUtil_1.register)('debug-breakpoint-data-unverified', 0xeaa8),
|
||
debugBreakpointData: (0, codiconsUtil_1.register)('debug-breakpoint-data', 0xeaa9),
|
||
debugBreakpointDataDisabled: (0, codiconsUtil_1.register)('debug-breakpoint-data-disabled', 0xeaa9),
|
||
debugBreakpointLogUnverified: (0, codiconsUtil_1.register)('debug-breakpoint-log-unverified', 0xeaaa),
|
||
debugBreakpointLog: (0, codiconsUtil_1.register)('debug-breakpoint-log', 0xeaab),
|
||
debugBreakpointLogDisabled: (0, codiconsUtil_1.register)('debug-breakpoint-log-disabled', 0xeaab),
|
||
briefcase: (0, codiconsUtil_1.register)('briefcase', 0xeaac),
|
||
broadcast: (0, codiconsUtil_1.register)('broadcast', 0xeaad),
|
||
browser: (0, codiconsUtil_1.register)('browser', 0xeaae),
|
||
bug: (0, codiconsUtil_1.register)('bug', 0xeaaf),
|
||
calendar: (0, codiconsUtil_1.register)('calendar', 0xeab0),
|
||
caseSensitive: (0, codiconsUtil_1.register)('case-sensitive', 0xeab1),
|
||
check: (0, codiconsUtil_1.register)('check', 0xeab2),
|
||
checklist: (0, codiconsUtil_1.register)('checklist', 0xeab3),
|
||
chevronDown: (0, codiconsUtil_1.register)('chevron-down', 0xeab4),
|
||
chevronLeft: (0, codiconsUtil_1.register)('chevron-left', 0xeab5),
|
||
chevronRight: (0, codiconsUtil_1.register)('chevron-right', 0xeab6),
|
||
chevronUp: (0, codiconsUtil_1.register)('chevron-up', 0xeab7),
|
||
chromeClose: (0, codiconsUtil_1.register)('chrome-close', 0xeab8),
|
||
chromeMaximize: (0, codiconsUtil_1.register)('chrome-maximize', 0xeab9),
|
||
chromeMinimize: (0, codiconsUtil_1.register)('chrome-minimize', 0xeaba),
|
||
chromeRestore: (0, codiconsUtil_1.register)('chrome-restore', 0xeabb),
|
||
circleOutline: (0, codiconsUtil_1.register)('circle-outline', 0xeabc),
|
||
circle: (0, codiconsUtil_1.register)('circle', 0xeabc),
|
||
debugBreakpointUnverified: (0, codiconsUtil_1.register)('debug-breakpoint-unverified', 0xeabc),
|
||
terminalDecorationIncomplete: (0, codiconsUtil_1.register)('terminal-decoration-incomplete', 0xeabc),
|
||
circleSlash: (0, codiconsUtil_1.register)('circle-slash', 0xeabd),
|
||
circuitBoard: (0, codiconsUtil_1.register)('circuit-board', 0xeabe),
|
||
clearAll: (0, codiconsUtil_1.register)('clear-all', 0xeabf),
|
||
clippy: (0, codiconsUtil_1.register)('clippy', 0xeac0),
|
||
closeAll: (0, codiconsUtil_1.register)('close-all', 0xeac1),
|
||
cloudDownload: (0, codiconsUtil_1.register)('cloud-download', 0xeac2),
|
||
cloudUpload: (0, codiconsUtil_1.register)('cloud-upload', 0xeac3),
|
||
code: (0, codiconsUtil_1.register)('code', 0xeac4),
|
||
collapseAll: (0, codiconsUtil_1.register)('collapse-all', 0xeac5),
|
||
colorMode: (0, codiconsUtil_1.register)('color-mode', 0xeac6),
|
||
commentDiscussion: (0, codiconsUtil_1.register)('comment-discussion', 0xeac7),
|
||
creditCard: (0, codiconsUtil_1.register)('credit-card', 0xeac9),
|
||
dash: (0, codiconsUtil_1.register)('dash', 0xeacc),
|
||
dashboard: (0, codiconsUtil_1.register)('dashboard', 0xeacd),
|
||
database: (0, codiconsUtil_1.register)('database', 0xeace),
|
||
debugContinue: (0, codiconsUtil_1.register)('debug-continue', 0xeacf),
|
||
debugDisconnect: (0, codiconsUtil_1.register)('debug-disconnect', 0xead0),
|
||
debugPause: (0, codiconsUtil_1.register)('debug-pause', 0xead1),
|
||
debugRestart: (0, codiconsUtil_1.register)('debug-restart', 0xead2),
|
||
debugStart: (0, codiconsUtil_1.register)('debug-start', 0xead3),
|
||
debugStepInto: (0, codiconsUtil_1.register)('debug-step-into', 0xead4),
|
||
debugStepOut: (0, codiconsUtil_1.register)('debug-step-out', 0xead5),
|
||
debugStepOver: (0, codiconsUtil_1.register)('debug-step-over', 0xead6),
|
||
debugStop: (0, codiconsUtil_1.register)('debug-stop', 0xead7),
|
||
debug: (0, codiconsUtil_1.register)('debug', 0xead8),
|
||
deviceCameraVideo: (0, codiconsUtil_1.register)('device-camera-video', 0xead9),
|
||
deviceCamera: (0, codiconsUtil_1.register)('device-camera', 0xeada),
|
||
deviceMobile: (0, codiconsUtil_1.register)('device-mobile', 0xeadb),
|
||
diffAdded: (0, codiconsUtil_1.register)('diff-added', 0xeadc),
|
||
diffIgnored: (0, codiconsUtil_1.register)('diff-ignored', 0xeadd),
|
||
diffModified: (0, codiconsUtil_1.register)('diff-modified', 0xeade),
|
||
diffRemoved: (0, codiconsUtil_1.register)('diff-removed', 0xeadf),
|
||
diffRenamed: (0, codiconsUtil_1.register)('diff-renamed', 0xeae0),
|
||
diff: (0, codiconsUtil_1.register)('diff', 0xeae1),
|
||
diffSidebyside: (0, codiconsUtil_1.register)('diff-sidebyside', 0xeae1),
|
||
discard: (0, codiconsUtil_1.register)('discard', 0xeae2),
|
||
editorLayout: (0, codiconsUtil_1.register)('editor-layout', 0xeae3),
|
||
emptyWindow: (0, codiconsUtil_1.register)('empty-window', 0xeae4),
|
||
exclude: (0, codiconsUtil_1.register)('exclude', 0xeae5),
|
||
extensions: (0, codiconsUtil_1.register)('extensions', 0xeae6),
|
||
eyeClosed: (0, codiconsUtil_1.register)('eye-closed', 0xeae7),
|
||
fileBinary: (0, codiconsUtil_1.register)('file-binary', 0xeae8),
|
||
fileCode: (0, codiconsUtil_1.register)('file-code', 0xeae9),
|
||
fileMedia: (0, codiconsUtil_1.register)('file-media', 0xeaea),
|
||
filePdf: (0, codiconsUtil_1.register)('file-pdf', 0xeaeb),
|
||
fileSubmodule: (0, codiconsUtil_1.register)('file-submodule', 0xeaec),
|
||
fileSymlinkDirectory: (0, codiconsUtil_1.register)('file-symlink-directory', 0xeaed),
|
||
fileSymlinkFile: (0, codiconsUtil_1.register)('file-symlink-file', 0xeaee),
|
||
fileZip: (0, codiconsUtil_1.register)('file-zip', 0xeaef),
|
||
files: (0, codiconsUtil_1.register)('files', 0xeaf0),
|
||
filter: (0, codiconsUtil_1.register)('filter', 0xeaf1),
|
||
flame: (0, codiconsUtil_1.register)('flame', 0xeaf2),
|
||
foldDown: (0, codiconsUtil_1.register)('fold-down', 0xeaf3),
|
||
foldUp: (0, codiconsUtil_1.register)('fold-up', 0xeaf4),
|
||
fold: (0, codiconsUtil_1.register)('fold', 0xeaf5),
|
||
folderActive: (0, codiconsUtil_1.register)('folder-active', 0xeaf6),
|
||
folderOpened: (0, codiconsUtil_1.register)('folder-opened', 0xeaf7),
|
||
gear: (0, codiconsUtil_1.register)('gear', 0xeaf8),
|
||
gift: (0, codiconsUtil_1.register)('gift', 0xeaf9),
|
||
gistSecret: (0, codiconsUtil_1.register)('gist-secret', 0xeafa),
|
||
gist: (0, codiconsUtil_1.register)('gist', 0xeafb),
|
||
gitCommit: (0, codiconsUtil_1.register)('git-commit', 0xeafc),
|
||
gitCompare: (0, codiconsUtil_1.register)('git-compare', 0xeafd),
|
||
compareChanges: (0, codiconsUtil_1.register)('compare-changes', 0xeafd),
|
||
gitMerge: (0, codiconsUtil_1.register)('git-merge', 0xeafe),
|
||
githubAction: (0, codiconsUtil_1.register)('github-action', 0xeaff),
|
||
githubAlt: (0, codiconsUtil_1.register)('github-alt', 0xeb00),
|
||
globe: (0, codiconsUtil_1.register)('globe', 0xeb01),
|
||
grabber: (0, codiconsUtil_1.register)('grabber', 0xeb02),
|
||
graph: (0, codiconsUtil_1.register)('graph', 0xeb03),
|
||
gripper: (0, codiconsUtil_1.register)('gripper', 0xeb04),
|
||
heart: (0, codiconsUtil_1.register)('heart', 0xeb05),
|
||
home: (0, codiconsUtil_1.register)('home', 0xeb06),
|
||
horizontalRule: (0, codiconsUtil_1.register)('horizontal-rule', 0xeb07),
|
||
hubot: (0, codiconsUtil_1.register)('hubot', 0xeb08),
|
||
inbox: (0, codiconsUtil_1.register)('inbox', 0xeb09),
|
||
issueReopened: (0, codiconsUtil_1.register)('issue-reopened', 0xeb0b),
|
||
issues: (0, codiconsUtil_1.register)('issues', 0xeb0c),
|
||
italic: (0, codiconsUtil_1.register)('italic', 0xeb0d),
|
||
jersey: (0, codiconsUtil_1.register)('jersey', 0xeb0e),
|
||
json: (0, codiconsUtil_1.register)('json', 0xeb0f),
|
||
kebabVertical: (0, codiconsUtil_1.register)('kebab-vertical', 0xeb10),
|
||
key: (0, codiconsUtil_1.register)('key', 0xeb11),
|
||
law: (0, codiconsUtil_1.register)('law', 0xeb12),
|
||
lightbulbAutofix: (0, codiconsUtil_1.register)('lightbulb-autofix', 0xeb13),
|
||
linkExternal: (0, codiconsUtil_1.register)('link-external', 0xeb14),
|
||
link: (0, codiconsUtil_1.register)('link', 0xeb15),
|
||
listOrdered: (0, codiconsUtil_1.register)('list-ordered', 0xeb16),
|
||
listUnordered: (0, codiconsUtil_1.register)('list-unordered', 0xeb17),
|
||
liveShare: (0, codiconsUtil_1.register)('live-share', 0xeb18),
|
||
loading: (0, codiconsUtil_1.register)('loading', 0xeb19),
|
||
location: (0, codiconsUtil_1.register)('location', 0xeb1a),
|
||
mailRead: (0, codiconsUtil_1.register)('mail-read', 0xeb1b),
|
||
mail: (0, codiconsUtil_1.register)('mail', 0xeb1c),
|
||
markdown: (0, codiconsUtil_1.register)('markdown', 0xeb1d),
|
||
megaphone: (0, codiconsUtil_1.register)('megaphone', 0xeb1e),
|
||
mention: (0, codiconsUtil_1.register)('mention', 0xeb1f),
|
||
milestone: (0, codiconsUtil_1.register)('milestone', 0xeb20),
|
||
gitPullRequestMilestone: (0, codiconsUtil_1.register)('git-pull-request-milestone', 0xeb20),
|
||
mortarBoard: (0, codiconsUtil_1.register)('mortar-board', 0xeb21),
|
||
move: (0, codiconsUtil_1.register)('move', 0xeb22),
|
||
multipleWindows: (0, codiconsUtil_1.register)('multiple-windows', 0xeb23),
|
||
mute: (0, codiconsUtil_1.register)('mute', 0xeb24),
|
||
noNewline: (0, codiconsUtil_1.register)('no-newline', 0xeb25),
|
||
note: (0, codiconsUtil_1.register)('note', 0xeb26),
|
||
octoface: (0, codiconsUtil_1.register)('octoface', 0xeb27),
|
||
openPreview: (0, codiconsUtil_1.register)('open-preview', 0xeb28),
|
||
package: (0, codiconsUtil_1.register)('package', 0xeb29),
|
||
paintcan: (0, codiconsUtil_1.register)('paintcan', 0xeb2a),
|
||
pin: (0, codiconsUtil_1.register)('pin', 0xeb2b),
|
||
play: (0, codiconsUtil_1.register)('play', 0xeb2c),
|
||
run: (0, codiconsUtil_1.register)('run', 0xeb2c),
|
||
plug: (0, codiconsUtil_1.register)('plug', 0xeb2d),
|
||
preserveCase: (0, codiconsUtil_1.register)('preserve-case', 0xeb2e),
|
||
preview: (0, codiconsUtil_1.register)('preview', 0xeb2f),
|
||
project: (0, codiconsUtil_1.register)('project', 0xeb30),
|
||
pulse: (0, codiconsUtil_1.register)('pulse', 0xeb31),
|
||
question: (0, codiconsUtil_1.register)('question', 0xeb32),
|
||
quote: (0, codiconsUtil_1.register)('quote', 0xeb33),
|
||
radioTower: (0, codiconsUtil_1.register)('radio-tower', 0xeb34),
|
||
reactions: (0, codiconsUtil_1.register)('reactions', 0xeb35),
|
||
references: (0, codiconsUtil_1.register)('references', 0xeb36),
|
||
refresh: (0, codiconsUtil_1.register)('refresh', 0xeb37),
|
||
regex: (0, codiconsUtil_1.register)('regex', 0xeb38),
|
||
remoteExplorer: (0, codiconsUtil_1.register)('remote-explorer', 0xeb39),
|
||
remote: (0, codiconsUtil_1.register)('remote', 0xeb3a),
|
||
remove: (0, codiconsUtil_1.register)('remove', 0xeb3b),
|
||
replaceAll: (0, codiconsUtil_1.register)('replace-all', 0xeb3c),
|
||
replace: (0, codiconsUtil_1.register)('replace', 0xeb3d),
|
||
repoClone: (0, codiconsUtil_1.register)('repo-clone', 0xeb3e),
|
||
repoForcePush: (0, codiconsUtil_1.register)('repo-force-push', 0xeb3f),
|
||
repoPull: (0, codiconsUtil_1.register)('repo-pull', 0xeb40),
|
||
repoPush: (0, codiconsUtil_1.register)('repo-push', 0xeb41),
|
||
report: (0, codiconsUtil_1.register)('report', 0xeb42),
|
||
requestChanges: (0, codiconsUtil_1.register)('request-changes', 0xeb43),
|
||
rocket: (0, codiconsUtil_1.register)('rocket', 0xeb44),
|
||
rootFolderOpened: (0, codiconsUtil_1.register)('root-folder-opened', 0xeb45),
|
||
rootFolder: (0, codiconsUtil_1.register)('root-folder', 0xeb46),
|
||
rss: (0, codiconsUtil_1.register)('rss', 0xeb47),
|
||
ruby: (0, codiconsUtil_1.register)('ruby', 0xeb48),
|
||
saveAll: (0, codiconsUtil_1.register)('save-all', 0xeb49),
|
||
saveAs: (0, codiconsUtil_1.register)('save-as', 0xeb4a),
|
||
save: (0, codiconsUtil_1.register)('save', 0xeb4b),
|
||
screenFull: (0, codiconsUtil_1.register)('screen-full', 0xeb4c),
|
||
screenNormal: (0, codiconsUtil_1.register)('screen-normal', 0xeb4d),
|
||
searchStop: (0, codiconsUtil_1.register)('search-stop', 0xeb4e),
|
||
server: (0, codiconsUtil_1.register)('server', 0xeb50),
|
||
settingsGear: (0, codiconsUtil_1.register)('settings-gear', 0xeb51),
|
||
settings: (0, codiconsUtil_1.register)('settings', 0xeb52),
|
||
shield: (0, codiconsUtil_1.register)('shield', 0xeb53),
|
||
smiley: (0, codiconsUtil_1.register)('smiley', 0xeb54),
|
||
sortPrecedence: (0, codiconsUtil_1.register)('sort-precedence', 0xeb55),
|
||
splitHorizontal: (0, codiconsUtil_1.register)('split-horizontal', 0xeb56),
|
||
splitVertical: (0, codiconsUtil_1.register)('split-vertical', 0xeb57),
|
||
squirrel: (0, codiconsUtil_1.register)('squirrel', 0xeb58),
|
||
starFull: (0, codiconsUtil_1.register)('star-full', 0xeb59),
|
||
starHalf: (0, codiconsUtil_1.register)('star-half', 0xeb5a),
|
||
symbolClass: (0, codiconsUtil_1.register)('symbol-class', 0xeb5b),
|
||
symbolColor: (0, codiconsUtil_1.register)('symbol-color', 0xeb5c),
|
||
symbolConstant: (0, codiconsUtil_1.register)('symbol-constant', 0xeb5d),
|
||
symbolEnumMember: (0, codiconsUtil_1.register)('symbol-enum-member', 0xeb5e),
|
||
symbolField: (0, codiconsUtil_1.register)('symbol-field', 0xeb5f),
|
||
symbolFile: (0, codiconsUtil_1.register)('symbol-file', 0xeb60),
|
||
symbolInterface: (0, codiconsUtil_1.register)('symbol-interface', 0xeb61),
|
||
symbolKeyword: (0, codiconsUtil_1.register)('symbol-keyword', 0xeb62),
|
||
symbolMisc: (0, codiconsUtil_1.register)('symbol-misc', 0xeb63),
|
||
symbolOperator: (0, codiconsUtil_1.register)('symbol-operator', 0xeb64),
|
||
symbolProperty: (0, codiconsUtil_1.register)('symbol-property', 0xeb65),
|
||
wrench: (0, codiconsUtil_1.register)('wrench', 0xeb65),
|
||
wrenchSubaction: (0, codiconsUtil_1.register)('wrench-subaction', 0xeb65),
|
||
symbolSnippet: (0, codiconsUtil_1.register)('symbol-snippet', 0xeb66),
|
||
tasklist: (0, codiconsUtil_1.register)('tasklist', 0xeb67),
|
||
telescope: (0, codiconsUtil_1.register)('telescope', 0xeb68),
|
||
textSize: (0, codiconsUtil_1.register)('text-size', 0xeb69),
|
||
threeBars: (0, codiconsUtil_1.register)('three-bars', 0xeb6a),
|
||
thumbsdown: (0, codiconsUtil_1.register)('thumbsdown', 0xeb6b),
|
||
thumbsup: (0, codiconsUtil_1.register)('thumbsup', 0xeb6c),
|
||
tools: (0, codiconsUtil_1.register)('tools', 0xeb6d),
|
||
triangleDown: (0, codiconsUtil_1.register)('triangle-down', 0xeb6e),
|
||
triangleLeft: (0, codiconsUtil_1.register)('triangle-left', 0xeb6f),
|
||
triangleRight: (0, codiconsUtil_1.register)('triangle-right', 0xeb70),
|
||
triangleUp: (0, codiconsUtil_1.register)('triangle-up', 0xeb71),
|
||
twitter: (0, codiconsUtil_1.register)('twitter', 0xeb72),
|
||
unfold: (0, codiconsUtil_1.register)('unfold', 0xeb73),
|
||
unlock: (0, codiconsUtil_1.register)('unlock', 0xeb74),
|
||
unmute: (0, codiconsUtil_1.register)('unmute', 0xeb75),
|
||
unverified: (0, codiconsUtil_1.register)('unverified', 0xeb76),
|
||
verified: (0, codiconsUtil_1.register)('verified', 0xeb77),
|
||
versions: (0, codiconsUtil_1.register)('versions', 0xeb78),
|
||
vmActive: (0, codiconsUtil_1.register)('vm-active', 0xeb79),
|
||
vmOutline: (0, codiconsUtil_1.register)('vm-outline', 0xeb7a),
|
||
vmRunning: (0, codiconsUtil_1.register)('vm-running', 0xeb7b),
|
||
watch: (0, codiconsUtil_1.register)('watch', 0xeb7c),
|
||
whitespace: (0, codiconsUtil_1.register)('whitespace', 0xeb7d),
|
||
wholeWord: (0, codiconsUtil_1.register)('whole-word', 0xeb7e),
|
||
window: (0, codiconsUtil_1.register)('window', 0xeb7f),
|
||
wordWrap: (0, codiconsUtil_1.register)('word-wrap', 0xeb80),
|
||
zoomIn: (0, codiconsUtil_1.register)('zoom-in', 0xeb81),
|
||
zoomOut: (0, codiconsUtil_1.register)('zoom-out', 0xeb82),
|
||
listFilter: (0, codiconsUtil_1.register)('list-filter', 0xeb83),
|
||
listFlat: (0, codiconsUtil_1.register)('list-flat', 0xeb84),
|
||
listSelection: (0, codiconsUtil_1.register)('list-selection', 0xeb85),
|
||
selection: (0, codiconsUtil_1.register)('selection', 0xeb85),
|
||
listTree: (0, codiconsUtil_1.register)('list-tree', 0xeb86),
|
||
debugBreakpointFunctionUnverified: (0, codiconsUtil_1.register)('debug-breakpoint-function-unverified', 0xeb87),
|
||
debugBreakpointFunction: (0, codiconsUtil_1.register)('debug-breakpoint-function', 0xeb88),
|
||
debugBreakpointFunctionDisabled: (0, codiconsUtil_1.register)('debug-breakpoint-function-disabled', 0xeb88),
|
||
debugStackframeActive: (0, codiconsUtil_1.register)('debug-stackframe-active', 0xeb89),
|
||
circleSmallFilled: (0, codiconsUtil_1.register)('circle-small-filled', 0xeb8a),
|
||
debugStackframeDot: (0, codiconsUtil_1.register)('debug-stackframe-dot', 0xeb8a),
|
||
terminalDecorationMark: (0, codiconsUtil_1.register)('terminal-decoration-mark', 0xeb8a),
|
||
debugStackframe: (0, codiconsUtil_1.register)('debug-stackframe', 0xeb8b),
|
||
debugStackframeFocused: (0, codiconsUtil_1.register)('debug-stackframe-focused', 0xeb8b),
|
||
debugBreakpointUnsupported: (0, codiconsUtil_1.register)('debug-breakpoint-unsupported', 0xeb8c),
|
||
symbolString: (0, codiconsUtil_1.register)('symbol-string', 0xeb8d),
|
||
debugReverseContinue: (0, codiconsUtil_1.register)('debug-reverse-continue', 0xeb8e),
|
||
debugStepBack: (0, codiconsUtil_1.register)('debug-step-back', 0xeb8f),
|
||
debugRestartFrame: (0, codiconsUtil_1.register)('debug-restart-frame', 0xeb90),
|
||
debugAlt: (0, codiconsUtil_1.register)('debug-alt', 0xeb91),
|
||
callIncoming: (0, codiconsUtil_1.register)('call-incoming', 0xeb92),
|
||
callOutgoing: (0, codiconsUtil_1.register)('call-outgoing', 0xeb93),
|
||
menu: (0, codiconsUtil_1.register)('menu', 0xeb94),
|
||
expandAll: (0, codiconsUtil_1.register)('expand-all', 0xeb95),
|
||
feedback: (0, codiconsUtil_1.register)('feedback', 0xeb96),
|
||
gitPullRequestReviewer: (0, codiconsUtil_1.register)('git-pull-request-reviewer', 0xeb96),
|
||
groupByRefType: (0, codiconsUtil_1.register)('group-by-ref-type', 0xeb97),
|
||
ungroupByRefType: (0, codiconsUtil_1.register)('ungroup-by-ref-type', 0xeb98),
|
||
account: (0, codiconsUtil_1.register)('account', 0xeb99),
|
||
gitPullRequestAssignee: (0, codiconsUtil_1.register)('git-pull-request-assignee', 0xeb99),
|
||
bellDot: (0, codiconsUtil_1.register)('bell-dot', 0xeb9a),
|
||
debugConsole: (0, codiconsUtil_1.register)('debug-console', 0xeb9b),
|
||
library: (0, codiconsUtil_1.register)('library', 0xeb9c),
|
||
output: (0, codiconsUtil_1.register)('output', 0xeb9d),
|
||
runAll: (0, codiconsUtil_1.register)('run-all', 0xeb9e),
|
||
syncIgnored: (0, codiconsUtil_1.register)('sync-ignored', 0xeb9f),
|
||
pinned: (0, codiconsUtil_1.register)('pinned', 0xeba0),
|
||
githubInverted: (0, codiconsUtil_1.register)('github-inverted', 0xeba1),
|
||
serverProcess: (0, codiconsUtil_1.register)('server-process', 0xeba2),
|
||
serverEnvironment: (0, codiconsUtil_1.register)('server-environment', 0xeba3),
|
||
pass: (0, codiconsUtil_1.register)('pass', 0xeba4),
|
||
issueClosed: (0, codiconsUtil_1.register)('issue-closed', 0xeba4),
|
||
stopCircle: (0, codiconsUtil_1.register)('stop-circle', 0xeba5),
|
||
playCircle: (0, codiconsUtil_1.register)('play-circle', 0xeba6),
|
||
record: (0, codiconsUtil_1.register)('record', 0xeba7),
|
||
debugAltSmall: (0, codiconsUtil_1.register)('debug-alt-small', 0xeba8),
|
||
vmConnect: (0, codiconsUtil_1.register)('vm-connect', 0xeba9),
|
||
cloud: (0, codiconsUtil_1.register)('cloud', 0xebaa),
|
||
merge: (0, codiconsUtil_1.register)('merge', 0xebab),
|
||
export: (0, codiconsUtil_1.register)('export', 0xebac),
|
||
graphLeft: (0, codiconsUtil_1.register)('graph-left', 0xebad),
|
||
magnet: (0, codiconsUtil_1.register)('magnet', 0xebae),
|
||
notebook: (0, codiconsUtil_1.register)('notebook', 0xebaf),
|
||
redo: (0, codiconsUtil_1.register)('redo', 0xebb0),
|
||
checkAll: (0, codiconsUtil_1.register)('check-all', 0xebb1),
|
||
pinnedDirty: (0, codiconsUtil_1.register)('pinned-dirty', 0xebb2),
|
||
passFilled: (0, codiconsUtil_1.register)('pass-filled', 0xebb3),
|
||
circleLargeFilled: (0, codiconsUtil_1.register)('circle-large-filled', 0xebb4),
|
||
circleLarge: (0, codiconsUtil_1.register)('circle-large', 0xebb5),
|
||
circleLargeOutline: (0, codiconsUtil_1.register)('circle-large-outline', 0xebb5),
|
||
combine: (0, codiconsUtil_1.register)('combine', 0xebb6),
|
||
gather: (0, codiconsUtil_1.register)('gather', 0xebb6),
|
||
table: (0, codiconsUtil_1.register)('table', 0xebb7),
|
||
variableGroup: (0, codiconsUtil_1.register)('variable-group', 0xebb8),
|
||
typeHierarchy: (0, codiconsUtil_1.register)('type-hierarchy', 0xebb9),
|
||
typeHierarchySub: (0, codiconsUtil_1.register)('type-hierarchy-sub', 0xebba),
|
||
typeHierarchySuper: (0, codiconsUtil_1.register)('type-hierarchy-super', 0xebbb),
|
||
gitPullRequestCreate: (0, codiconsUtil_1.register)('git-pull-request-create', 0xebbc),
|
||
runAbove: (0, codiconsUtil_1.register)('run-above', 0xebbd),
|
||
runBelow: (0, codiconsUtil_1.register)('run-below', 0xebbe),
|
||
notebookTemplate: (0, codiconsUtil_1.register)('notebook-template', 0xebbf),
|
||
debugRerun: (0, codiconsUtil_1.register)('debug-rerun', 0xebc0),
|
||
workspaceTrusted: (0, codiconsUtil_1.register)('workspace-trusted', 0xebc1),
|
||
workspaceUntrusted: (0, codiconsUtil_1.register)('workspace-untrusted', 0xebc2),
|
||
workspaceUnknown: (0, codiconsUtil_1.register)('workspace-unknown', 0xebc3),
|
||
terminalCmd: (0, codiconsUtil_1.register)('terminal-cmd', 0xebc4),
|
||
terminalDebian: (0, codiconsUtil_1.register)('terminal-debian', 0xebc5),
|
||
terminalLinux: (0, codiconsUtil_1.register)('terminal-linux', 0xebc6),
|
||
terminalPowershell: (0, codiconsUtil_1.register)('terminal-powershell', 0xebc7),
|
||
terminalTmux: (0, codiconsUtil_1.register)('terminal-tmux', 0xebc8),
|
||
terminalUbuntu: (0, codiconsUtil_1.register)('terminal-ubuntu', 0xebc9),
|
||
terminalBash: (0, codiconsUtil_1.register)('terminal-bash', 0xebca),
|
||
arrowSwap: (0, codiconsUtil_1.register)('arrow-swap', 0xebcb),
|
||
copy: (0, codiconsUtil_1.register)('copy', 0xebcc),
|
||
personAdd: (0, codiconsUtil_1.register)('person-add', 0xebcd),
|
||
filterFilled: (0, codiconsUtil_1.register)('filter-filled', 0xebce),
|
||
wand: (0, codiconsUtil_1.register)('wand', 0xebcf),
|
||
debugLineByLine: (0, codiconsUtil_1.register)('debug-line-by-line', 0xebd0),
|
||
inspect: (0, codiconsUtil_1.register)('inspect', 0xebd1),
|
||
layers: (0, codiconsUtil_1.register)('layers', 0xebd2),
|
||
layersDot: (0, codiconsUtil_1.register)('layers-dot', 0xebd3),
|
||
layersActive: (0, codiconsUtil_1.register)('layers-active', 0xebd4),
|
||
compass: (0, codiconsUtil_1.register)('compass', 0xebd5),
|
||
compassDot: (0, codiconsUtil_1.register)('compass-dot', 0xebd6),
|
||
compassActive: (0, codiconsUtil_1.register)('compass-active', 0xebd7),
|
||
azure: (0, codiconsUtil_1.register)('azure', 0xebd8),
|
||
issueDraft: (0, codiconsUtil_1.register)('issue-draft', 0xebd9),
|
||
gitPullRequestClosed: (0, codiconsUtil_1.register)('git-pull-request-closed', 0xebda),
|
||
gitPullRequestDraft: (0, codiconsUtil_1.register)('git-pull-request-draft', 0xebdb),
|
||
debugAll: (0, codiconsUtil_1.register)('debug-all', 0xebdc),
|
||
debugCoverage: (0, codiconsUtil_1.register)('debug-coverage', 0xebdd),
|
||
runErrors: (0, codiconsUtil_1.register)('run-errors', 0xebde),
|
||
folderLibrary: (0, codiconsUtil_1.register)('folder-library', 0xebdf),
|
||
debugContinueSmall: (0, codiconsUtil_1.register)('debug-continue-small', 0xebe0),
|
||
beakerStop: (0, codiconsUtil_1.register)('beaker-stop', 0xebe1),
|
||
graphLine: (0, codiconsUtil_1.register)('graph-line', 0xebe2),
|
||
graphScatter: (0, codiconsUtil_1.register)('graph-scatter', 0xebe3),
|
||
pieChart: (0, codiconsUtil_1.register)('pie-chart', 0xebe4),
|
||
bracket: (0, codiconsUtil_1.register)('bracket', 0xeb0f),
|
||
bracketDot: (0, codiconsUtil_1.register)('bracket-dot', 0xebe5),
|
||
bracketError: (0, codiconsUtil_1.register)('bracket-error', 0xebe6),
|
||
lockSmall: (0, codiconsUtil_1.register)('lock-small', 0xebe7),
|
||
azureDevops: (0, codiconsUtil_1.register)('azure-devops', 0xebe8),
|
||
verifiedFilled: (0, codiconsUtil_1.register)('verified-filled', 0xebe9),
|
||
newline: (0, codiconsUtil_1.register)('newline', 0xebea),
|
||
layout: (0, codiconsUtil_1.register)('layout', 0xebeb),
|
||
layoutActivitybarLeft: (0, codiconsUtil_1.register)('layout-activitybar-left', 0xebec),
|
||
layoutActivitybarRight: (0, codiconsUtil_1.register)('layout-activitybar-right', 0xebed),
|
||
layoutPanelLeft: (0, codiconsUtil_1.register)('layout-panel-left', 0xebee),
|
||
layoutPanelCenter: (0, codiconsUtil_1.register)('layout-panel-center', 0xebef),
|
||
layoutPanelJustify: (0, codiconsUtil_1.register)('layout-panel-justify', 0xebf0),
|
||
layoutPanelRight: (0, codiconsUtil_1.register)('layout-panel-right', 0xebf1),
|
||
layoutPanel: (0, codiconsUtil_1.register)('layout-panel', 0xebf2),
|
||
layoutSidebarLeft: (0, codiconsUtil_1.register)('layout-sidebar-left', 0xebf3),
|
||
layoutSidebarRight: (0, codiconsUtil_1.register)('layout-sidebar-right', 0xebf4),
|
||
layoutStatusbar: (0, codiconsUtil_1.register)('layout-statusbar', 0xebf5),
|
||
layoutMenubar: (0, codiconsUtil_1.register)('layout-menubar', 0xebf6),
|
||
layoutCentered: (0, codiconsUtil_1.register)('layout-centered', 0xebf7),
|
||
target: (0, codiconsUtil_1.register)('target', 0xebf8),
|
||
indent: (0, codiconsUtil_1.register)('indent', 0xebf9),
|
||
recordSmall: (0, codiconsUtil_1.register)('record-small', 0xebfa),
|
||
errorSmall: (0, codiconsUtil_1.register)('error-small', 0xebfb),
|
||
terminalDecorationError: (0, codiconsUtil_1.register)('terminal-decoration-error', 0xebfb),
|
||
arrowCircleDown: (0, codiconsUtil_1.register)('arrow-circle-down', 0xebfc),
|
||
arrowCircleLeft: (0, codiconsUtil_1.register)('arrow-circle-left', 0xebfd),
|
||
arrowCircleRight: (0, codiconsUtil_1.register)('arrow-circle-right', 0xebfe),
|
||
arrowCircleUp: (0, codiconsUtil_1.register)('arrow-circle-up', 0xebff),
|
||
layoutSidebarRightOff: (0, codiconsUtil_1.register)('layout-sidebar-right-off', 0xec00),
|
||
layoutPanelOff: (0, codiconsUtil_1.register)('layout-panel-off', 0xec01),
|
||
layoutSidebarLeftOff: (0, codiconsUtil_1.register)('layout-sidebar-left-off', 0xec02),
|
||
blank: (0, codiconsUtil_1.register)('blank', 0xec03),
|
||
heartFilled: (0, codiconsUtil_1.register)('heart-filled', 0xec04),
|
||
map: (0, codiconsUtil_1.register)('map', 0xec05),
|
||
mapHorizontal: (0, codiconsUtil_1.register)('map-horizontal', 0xec05),
|
||
foldHorizontal: (0, codiconsUtil_1.register)('fold-horizontal', 0xec05),
|
||
mapFilled: (0, codiconsUtil_1.register)('map-filled', 0xec06),
|
||
mapHorizontalFilled: (0, codiconsUtil_1.register)('map-horizontal-filled', 0xec06),
|
||
foldHorizontalFilled: (0, codiconsUtil_1.register)('fold-horizontal-filled', 0xec06),
|
||
circleSmall: (0, codiconsUtil_1.register)('circle-small', 0xec07),
|
||
bellSlash: (0, codiconsUtil_1.register)('bell-slash', 0xec08),
|
||
bellSlashDot: (0, codiconsUtil_1.register)('bell-slash-dot', 0xec09),
|
||
commentUnresolved: (0, codiconsUtil_1.register)('comment-unresolved', 0xec0a),
|
||
gitPullRequestGoToChanges: (0, codiconsUtil_1.register)('git-pull-request-go-to-changes', 0xec0b),
|
||
gitPullRequestNewChanges: (0, codiconsUtil_1.register)('git-pull-request-new-changes', 0xec0c),
|
||
searchFuzzy: (0, codiconsUtil_1.register)('search-fuzzy', 0xec0d),
|
||
commentDraft: (0, codiconsUtil_1.register)('comment-draft', 0xec0e),
|
||
send: (0, codiconsUtil_1.register)('send', 0xec0f),
|
||
sparkle: (0, codiconsUtil_1.register)('sparkle', 0xec10),
|
||
insert: (0, codiconsUtil_1.register)('insert', 0xec11),
|
||
mic: (0, codiconsUtil_1.register)('mic', 0xec12),
|
||
thumbsdownFilled: (0, codiconsUtil_1.register)('thumbsdown-filled', 0xec13),
|
||
thumbsupFilled: (0, codiconsUtil_1.register)('thumbsup-filled', 0xec14),
|
||
coffee: (0, codiconsUtil_1.register)('coffee', 0xec15),
|
||
snake: (0, codiconsUtil_1.register)('snake', 0xec16),
|
||
game: (0, codiconsUtil_1.register)('game', 0xec17),
|
||
vr: (0, codiconsUtil_1.register)('vr', 0xec18),
|
||
chip: (0, codiconsUtil_1.register)('chip', 0xec19),
|
||
piano: (0, codiconsUtil_1.register)('piano', 0xec1a),
|
||
music: (0, codiconsUtil_1.register)('music', 0xec1b),
|
||
micFilled: (0, codiconsUtil_1.register)('mic-filled', 0xec1c),
|
||
repoFetch: (0, codiconsUtil_1.register)('repo-fetch', 0xec1d),
|
||
copilot: (0, codiconsUtil_1.register)('copilot', 0xec1e),
|
||
lightbulbSparkle: (0, codiconsUtil_1.register)('lightbulb-sparkle', 0xec1f),
|
||
robot: (0, codiconsUtil_1.register)('robot', 0xec20),
|
||
sparkleFilled: (0, codiconsUtil_1.register)('sparkle-filled', 0xec21),
|
||
diffSingle: (0, codiconsUtil_1.register)('diff-single', 0xec22),
|
||
diffMultiple: (0, codiconsUtil_1.register)('diff-multiple', 0xec23),
|
||
surroundWith: (0, codiconsUtil_1.register)('surround-with', 0xec24),
|
||
share: (0, codiconsUtil_1.register)('share', 0xec25),
|
||
gitStash: (0, codiconsUtil_1.register)('git-stash', 0xec26),
|
||
gitStashApply: (0, codiconsUtil_1.register)('git-stash-apply', 0xec27),
|
||
gitStashPop: (0, codiconsUtil_1.register)('git-stash-pop', 0xec28),
|
||
vscode: (0, codiconsUtil_1.register)('vscode', 0xec29),
|
||
vscodeInsiders: (0, codiconsUtil_1.register)('vscode-insiders', 0xec2a),
|
||
codeOss: (0, codiconsUtil_1.register)('code-oss', 0xec2b),
|
||
runCoverage: (0, codiconsUtil_1.register)('run-coverage', 0xec2c),
|
||
runAllCoverage: (0, codiconsUtil_1.register)('run-all-coverage', 0xec2d),
|
||
coverage: (0, codiconsUtil_1.register)('coverage', 0xec2e),
|
||
githubProject: (0, codiconsUtil_1.register)('github-project', 0xec2f),
|
||
mapVertical: (0, codiconsUtil_1.register)('map-vertical', 0xec30),
|
||
foldVertical: (0, codiconsUtil_1.register)('fold-vertical', 0xec30),
|
||
mapVerticalFilled: (0, codiconsUtil_1.register)('map-vertical-filled', 0xec31),
|
||
foldVerticalFilled: (0, codiconsUtil_1.register)('fold-vertical-filled', 0xec31),
|
||
goToSearch: (0, codiconsUtil_1.register)('go-to-search', 0xec32),
|
||
percentage: (0, codiconsUtil_1.register)('percentage', 0xec33),
|
||
sortPercentage: (0, codiconsUtil_1.register)('sort-percentage', 0xec33),
|
||
attach: (0, codiconsUtil_1.register)('attach', 0xec34),
|
||
};
|
||
});
|
||
|
||
define(__m[47/*vs/base/common/codicons*/], __M([0/*require*/,1/*exports*/,26/*vs/base/common/codiconsUtil*/,46/*vs/base/common/codiconsLibrary*/]), function (require, exports, codiconsUtil_1, codiconsLibrary_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.Codicon = exports.codiconsDerived = void 0;
|
||
/**
|
||
* Derived icons, that could become separate icons.
|
||
* These mappings should be moved into the mapping file in the vscode-codicons repo at some point.
|
||
*/
|
||
exports.codiconsDerived = {
|
||
dialogError: (0, codiconsUtil_1.register)('dialog-error', 'error'),
|
||
dialogWarning: (0, codiconsUtil_1.register)('dialog-warning', 'warning'),
|
||
dialogInfo: (0, codiconsUtil_1.register)('dialog-info', 'info'),
|
||
dialogClose: (0, codiconsUtil_1.register)('dialog-close', 'close'),
|
||
treeItemExpanded: (0, codiconsUtil_1.register)('tree-item-expanded', 'chevron-down'), // collapsed is done with rotation
|
||
treeFilterOnTypeOn: (0, codiconsUtil_1.register)('tree-filter-on-type-on', 'list-filter'),
|
||
treeFilterOnTypeOff: (0, codiconsUtil_1.register)('tree-filter-on-type-off', 'list-selection'),
|
||
treeFilterClear: (0, codiconsUtil_1.register)('tree-filter-clear', 'close'),
|
||
treeItemLoading: (0, codiconsUtil_1.register)('tree-item-loading', 'loading'),
|
||
menuSelection: (0, codiconsUtil_1.register)('menu-selection', 'check'),
|
||
menuSubmenu: (0, codiconsUtil_1.register)('menu-submenu', 'chevron-right'),
|
||
menuBarMore: (0, codiconsUtil_1.register)('menubar-more', 'more'),
|
||
scrollbarButtonLeft: (0, codiconsUtil_1.register)('scrollbar-button-left', 'triangle-left'),
|
||
scrollbarButtonRight: (0, codiconsUtil_1.register)('scrollbar-button-right', 'triangle-right'),
|
||
scrollbarButtonUp: (0, codiconsUtil_1.register)('scrollbar-button-up', 'triangle-up'),
|
||
scrollbarButtonDown: (0, codiconsUtil_1.register)('scrollbar-button-down', 'triangle-down'),
|
||
toolBarMore: (0, codiconsUtil_1.register)('toolbar-more', 'more'),
|
||
quickInputBack: (0, codiconsUtil_1.register)('quick-input-back', 'arrow-left'),
|
||
dropDownButton: (0, codiconsUtil_1.register)('drop-down-button', 0xeab4),
|
||
symbolCustomColor: (0, codiconsUtil_1.register)('symbol-customcolor', 0xeb5c),
|
||
exportIcon: (0, codiconsUtil_1.register)('export', 0xebac),
|
||
workspaceUnspecified: (0, codiconsUtil_1.register)('workspace-unspecified', 0xebc3),
|
||
newLine: (0, codiconsUtil_1.register)('newline', 0xebea),
|
||
thumbsDownFilled: (0, codiconsUtil_1.register)('thumbsdown-filled', 0xec13),
|
||
thumbsUpFilled: (0, codiconsUtil_1.register)('thumbsup-filled', 0xec14),
|
||
gitFetch: (0, codiconsUtil_1.register)('git-fetch', 0xec1d),
|
||
lightbulbSparkleAutofix: (0, codiconsUtil_1.register)('lightbulb-sparkle-autofix', 0xec1f),
|
||
debugBreakpointPending: (0, codiconsUtil_1.register)('debug-breakpoint-pending', 0xebd9),
|
||
};
|
||
/**
|
||
* The Codicon library is a set of default icons that are built-in in VS Code.
|
||
*
|
||
* In the product (outside of base) Codicons should only be used as defaults. In order to have all icons in VS Code
|
||
* themeable, component should define new, UI component specific icons using `iconRegistry.registerIcon`.
|
||
* In that call a Codicon can be named as default.
|
||
*/
|
||
exports.Codicon = {
|
||
...codiconsLibrary_1.codiconsLibrary,
|
||
...exports.codiconsDerived
|
||
};
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[27/*vs/base/common/objects*/], __M([0/*require*/,1/*exports*/,25/*vs/base/common/types*/]), function (require, exports, types_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.deepClone = deepClone;
|
||
exports.deepFreeze = deepFreeze;
|
||
exports.cloneAndChange = cloneAndChange;
|
||
exports.mixin = mixin;
|
||
exports.equals = equals;
|
||
exports.getAllPropertyNames = getAllPropertyNames;
|
||
exports.getAllMethodNames = getAllMethodNames;
|
||
exports.createProxyObject = createProxyObject;
|
||
function deepClone(obj) {
|
||
if (!obj || typeof obj !== 'object') {
|
||
return obj;
|
||
}
|
||
if (obj instanceof RegExp) {
|
||
return obj;
|
||
}
|
||
const result = Array.isArray(obj) ? [] : {};
|
||
Object.entries(obj).forEach(([key, value]) => {
|
||
result[key] = value && typeof value === 'object' ? deepClone(value) : value;
|
||
});
|
||
return result;
|
||
}
|
||
function deepFreeze(obj) {
|
||
if (!obj || typeof obj !== 'object') {
|
||
return obj;
|
||
}
|
||
const stack = [obj];
|
||
while (stack.length > 0) {
|
||
const obj = stack.shift();
|
||
Object.freeze(obj);
|
||
for (const key in obj) {
|
||
if (_hasOwnProperty.call(obj, key)) {
|
||
const prop = obj[key];
|
||
if (typeof prop === 'object' && !Object.isFrozen(prop) && !(0, types_1.isTypedArray)(prop)) {
|
||
stack.push(prop);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return obj;
|
||
}
|
||
const _hasOwnProperty = Object.prototype.hasOwnProperty;
|
||
function cloneAndChange(obj, changer) {
|
||
return _cloneAndChange(obj, changer, new Set());
|
||
}
|
||
function _cloneAndChange(obj, changer, seen) {
|
||
if ((0, types_1.isUndefinedOrNull)(obj)) {
|
||
return obj;
|
||
}
|
||
const changed = changer(obj);
|
||
if (typeof changed !== 'undefined') {
|
||
return changed;
|
||
}
|
||
if (Array.isArray(obj)) {
|
||
const r1 = [];
|
||
for (const e of obj) {
|
||
r1.push(_cloneAndChange(e, changer, seen));
|
||
}
|
||
return r1;
|
||
}
|
||
if ((0, types_1.isObject)(obj)) {
|
||
if (seen.has(obj)) {
|
||
throw new Error('Cannot clone recursive data-structure');
|
||
}
|
||
seen.add(obj);
|
||
const r2 = {};
|
||
for (const i2 in obj) {
|
||
if (_hasOwnProperty.call(obj, i2)) {
|
||
r2[i2] = _cloneAndChange(obj[i2], changer, seen);
|
||
}
|
||
}
|
||
seen.delete(obj);
|
||
return r2;
|
||
}
|
||
return obj;
|
||
}
|
||
/**
|
||
* Copies all properties of source into destination. The optional parameter "overwrite" allows to control
|
||
* if existing properties on the destination should be overwritten or not. Defaults to true (overwrite).
|
||
*/
|
||
function mixin(destination, source, overwrite = true) {
|
||
if (!(0, types_1.isObject)(destination)) {
|
||
return source;
|
||
}
|
||
if ((0, types_1.isObject)(source)) {
|
||
Object.keys(source).forEach(key => {
|
||
if (key in destination) {
|
||
if (overwrite) {
|
||
if ((0, types_1.isObject)(destination[key]) && (0, types_1.isObject)(source[key])) {
|
||
mixin(destination[key], source[key], overwrite);
|
||
}
|
||
else {
|
||
destination[key] = source[key];
|
||
}
|
||
}
|
||
}
|
||
else {
|
||
destination[key] = source[key];
|
||
}
|
||
});
|
||
}
|
||
return destination;
|
||
}
|
||
function equals(one, other) {
|
||
if (one === other) {
|
||
return true;
|
||
}
|
||
if (one === null || one === undefined || other === null || other === undefined) {
|
||
return false;
|
||
}
|
||
if (typeof one !== typeof other) {
|
||
return false;
|
||
}
|
||
if (typeof one !== 'object') {
|
||
return false;
|
||
}
|
||
if ((Array.isArray(one)) !== (Array.isArray(other))) {
|
||
return false;
|
||
}
|
||
let i;
|
||
let key;
|
||
if (Array.isArray(one)) {
|
||
if (one.length !== other.length) {
|
||
return false;
|
||
}
|
||
for (i = 0; i < one.length; i++) {
|
||
if (!equals(one[i], other[i])) {
|
||
return false;
|
||
}
|
||
}
|
||
}
|
||
else {
|
||
const oneKeys = [];
|
||
for (key in one) {
|
||
oneKeys.push(key);
|
||
}
|
||
oneKeys.sort();
|
||
const otherKeys = [];
|
||
for (key in other) {
|
||
otherKeys.push(key);
|
||
}
|
||
otherKeys.sort();
|
||
if (!equals(oneKeys, otherKeys)) {
|
||
return false;
|
||
}
|
||
for (i = 0; i < oneKeys.length; i++) {
|
||
if (!equals(one[oneKeys[i]], other[oneKeys[i]])) {
|
||
return false;
|
||
}
|
||
}
|
||
}
|
||
return true;
|
||
}
|
||
function getAllPropertyNames(obj) {
|
||
let res = [];
|
||
while (Object.prototype !== obj) {
|
||
res = res.concat(Object.getOwnPropertyNames(obj));
|
||
obj = Object.getPrototypeOf(obj);
|
||
}
|
||
return res;
|
||
}
|
||
function getAllMethodNames(obj) {
|
||
const methods = [];
|
||
for (const prop of getAllPropertyNames(obj)) {
|
||
if (typeof obj[prop] === 'function') {
|
||
methods.push(prop);
|
||
}
|
||
}
|
||
return methods;
|
||
}
|
||
function createProxyObject(methodNames, invoke) {
|
||
const createProxyMethod = (method) => {
|
||
return function () {
|
||
const args = Array.prototype.slice.call(arguments, 0);
|
||
return invoke(method, args);
|
||
};
|
||
};
|
||
const result = {};
|
||
for (const methodName of methodNames) {
|
||
result[methodName] = createProxyMethod(methodName);
|
||
}
|
||
return result;
|
||
}
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[28/*vs/base/common/uint*/], __M([0/*require*/,1/*exports*/]), function (require, exports) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.toUint8 = toUint8;
|
||
exports.toUint32 = toUint32;
|
||
function toUint8(v) {
|
||
if (v < 0) {
|
||
return 0;
|
||
}
|
||
if (v > 255 /* Constants.MAX_UINT_8 */) {
|
||
return 255 /* Constants.MAX_UINT_8 */;
|
||
}
|
||
return v | 0;
|
||
}
|
||
function toUint32(v) {
|
||
if (v < 0) {
|
||
return 0;
|
||
}
|
||
if (v > 4294967295 /* Constants.MAX_UINT_32 */) {
|
||
return 4294967295 /* Constants.MAX_UINT_32 */;
|
||
}
|
||
return v | 0;
|
||
}
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[29/*vs/editor/common/core/characterClassifier*/], __M([0/*require*/,1/*exports*/,28/*vs/base/common/uint*/]), function (require, exports, uint_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.CharacterSet = exports.CharacterClassifier = void 0;
|
||
/**
|
||
* A fast character classifier that uses a compact array for ASCII values.
|
||
*/
|
||
class CharacterClassifier {
|
||
constructor(_defaultValue) {
|
||
const defaultValue = (0, uint_1.toUint8)(_defaultValue);
|
||
this._defaultValue = defaultValue;
|
||
this._asciiMap = CharacterClassifier._createAsciiMap(defaultValue);
|
||
this._map = new Map();
|
||
}
|
||
static _createAsciiMap(defaultValue) {
|
||
const asciiMap = new Uint8Array(256);
|
||
asciiMap.fill(defaultValue);
|
||
return asciiMap;
|
||
}
|
||
set(charCode, _value) {
|
||
const value = (0, uint_1.toUint8)(_value);
|
||
if (charCode >= 0 && charCode < 256) {
|
||
this._asciiMap[charCode] = value;
|
||
}
|
||
else {
|
||
this._map.set(charCode, value);
|
||
}
|
||
}
|
||
get(charCode) {
|
||
if (charCode >= 0 && charCode < 256) {
|
||
return this._asciiMap[charCode];
|
||
}
|
||
else {
|
||
return (this._map.get(charCode) || this._defaultValue);
|
||
}
|
||
}
|
||
clear() {
|
||
this._asciiMap.fill(this._defaultValue);
|
||
this._map.clear();
|
||
}
|
||
}
|
||
exports.CharacterClassifier = CharacterClassifier;
|
||
class CharacterSet {
|
||
constructor() {
|
||
this._actual = new CharacterClassifier(0 /* Boolean.False */);
|
||
}
|
||
add(charCode) {
|
||
this._actual.set(charCode, 1 /* Boolean.True */);
|
||
}
|
||
has(charCode) {
|
||
return (this._actual.get(charCode) === 1 /* Boolean.True */);
|
||
}
|
||
clear() {
|
||
return this._actual.clear();
|
||
}
|
||
}
|
||
exports.CharacterSet = CharacterSet;
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[5/*vs/editor/common/core/offsetRange*/], __M([0/*require*/,1/*exports*/,3/*vs/base/common/errors*/]), function (require, exports, errors_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.OffsetRangeSet = exports.OffsetRange = void 0;
|
||
/**
|
||
* A range of offsets (0-based).
|
||
*/
|
||
class OffsetRange {
|
||
static addRange(range, sortedRanges) {
|
||
let i = 0;
|
||
while (i < sortedRanges.length && sortedRanges[i].endExclusive < range.start) {
|
||
i++;
|
||
}
|
||
let j = i;
|
||
while (j < sortedRanges.length && sortedRanges[j].start <= range.endExclusive) {
|
||
j++;
|
||
}
|
||
if (i === j) {
|
||
sortedRanges.splice(i, 0, range);
|
||
}
|
||
else {
|
||
const start = Math.min(range.start, sortedRanges[i].start);
|
||
const end = Math.max(range.endExclusive, sortedRanges[j - 1].endExclusive);
|
||
sortedRanges.splice(i, j - i, new OffsetRange(start, end));
|
||
}
|
||
}
|
||
static tryCreate(start, endExclusive) {
|
||
if (start > endExclusive) {
|
||
return undefined;
|
||
}
|
||
return new OffsetRange(start, endExclusive);
|
||
}
|
||
static ofLength(length) {
|
||
return new OffsetRange(0, length);
|
||
}
|
||
static ofStartAndLength(start, length) {
|
||
return new OffsetRange(start, start + length);
|
||
}
|
||
constructor(start, endExclusive) {
|
||
this.start = start;
|
||
this.endExclusive = endExclusive;
|
||
if (start > endExclusive) {
|
||
throw new errors_1.BugIndicatingError(`Invalid range: ${this.toString()}`);
|
||
}
|
||
}
|
||
get isEmpty() {
|
||
return this.start === this.endExclusive;
|
||
}
|
||
delta(offset) {
|
||
return new OffsetRange(this.start + offset, this.endExclusive + offset);
|
||
}
|
||
deltaStart(offset) {
|
||
return new OffsetRange(this.start + offset, this.endExclusive);
|
||
}
|
||
deltaEnd(offset) {
|
||
return new OffsetRange(this.start, this.endExclusive + offset);
|
||
}
|
||
get length() {
|
||
return this.endExclusive - this.start;
|
||
}
|
||
toString() {
|
||
return `[${this.start}, ${this.endExclusive})`;
|
||
}
|
||
contains(offset) {
|
||
return this.start <= offset && offset < this.endExclusive;
|
||
}
|
||
/**
|
||
* for all numbers n: range1.contains(n) or range2.contains(n) => range1.join(range2).contains(n)
|
||
* The joined range is the smallest range that contains both ranges.
|
||
*/
|
||
join(other) {
|
||
return new OffsetRange(Math.min(this.start, other.start), Math.max(this.endExclusive, other.endExclusive));
|
||
}
|
||
/**
|
||
* for all numbers n: range1.contains(n) and range2.contains(n) <=> range1.intersect(range2).contains(n)
|
||
*
|
||
* The resulting range is empty if the ranges do not intersect, but touch.
|
||
* If the ranges don't even touch, the result is undefined.
|
||
*/
|
||
intersect(other) {
|
||
const start = Math.max(this.start, other.start);
|
||
const end = Math.min(this.endExclusive, other.endExclusive);
|
||
if (start <= end) {
|
||
return new OffsetRange(start, end);
|
||
}
|
||
return undefined;
|
||
}
|
||
intersects(other) {
|
||
const start = Math.max(this.start, other.start);
|
||
const end = Math.min(this.endExclusive, other.endExclusive);
|
||
return start < end;
|
||
}
|
||
isBefore(other) {
|
||
return this.endExclusive <= other.start;
|
||
}
|
||
isAfter(other) {
|
||
return this.start >= other.endExclusive;
|
||
}
|
||
slice(arr) {
|
||
return arr.slice(this.start, this.endExclusive);
|
||
}
|
||
substring(str) {
|
||
return str.substring(this.start, this.endExclusive);
|
||
}
|
||
/**
|
||
* Returns the given value if it is contained in this instance, otherwise the closest value that is contained.
|
||
* The range must not be empty.
|
||
*/
|
||
clip(value) {
|
||
if (this.isEmpty) {
|
||
throw new errors_1.BugIndicatingError(`Invalid clipping range: ${this.toString()}`);
|
||
}
|
||
return Math.max(this.start, Math.min(this.endExclusive - 1, value));
|
||
}
|
||
/**
|
||
* Returns `r := value + k * length` such that `r` is contained in this range.
|
||
* The range must not be empty.
|
||
*
|
||
* E.g. `[5, 10).clipCyclic(10) === 5`, `[5, 10).clipCyclic(11) === 6` and `[5, 10).clipCyclic(4) === 9`.
|
||
*/
|
||
clipCyclic(value) {
|
||
if (this.isEmpty) {
|
||
throw new errors_1.BugIndicatingError(`Invalid clipping range: ${this.toString()}`);
|
||
}
|
||
if (value < this.start) {
|
||
return this.endExclusive - ((this.start - value) % this.length);
|
||
}
|
||
if (value >= this.endExclusive) {
|
||
return this.start + ((value - this.start) % this.length);
|
||
}
|
||
return value;
|
||
}
|
||
forEach(f) {
|
||
for (let i = this.start; i < this.endExclusive; i++) {
|
||
f(i);
|
||
}
|
||
}
|
||
}
|
||
exports.OffsetRange = OffsetRange;
|
||
class OffsetRangeSet {
|
||
constructor() {
|
||
this._sortedRanges = [];
|
||
}
|
||
addRange(range) {
|
||
let i = 0;
|
||
while (i < this._sortedRanges.length && this._sortedRanges[i].endExclusive < range.start) {
|
||
i++;
|
||
}
|
||
let j = i;
|
||
while (j < this._sortedRanges.length && this._sortedRanges[j].start <= range.endExclusive) {
|
||
j++;
|
||
}
|
||
if (i === j) {
|
||
this._sortedRanges.splice(i, 0, range);
|
||
}
|
||
else {
|
||
const start = Math.min(range.start, this._sortedRanges[i].start);
|
||
const end = Math.max(range.endExclusive, this._sortedRanges[j - 1].endExclusive);
|
||
this._sortedRanges.splice(i, j - i, new OffsetRange(start, end));
|
||
}
|
||
}
|
||
toString() {
|
||
return this._sortedRanges.map(r => r.toString()).join(', ');
|
||
}
|
||
/**
|
||
* Returns of there is a value that is contained in this instance and the given range.
|
||
*/
|
||
intersectsStrict(other) {
|
||
// TODO use binary search
|
||
let i = 0;
|
||
while (i < this._sortedRanges.length && this._sortedRanges[i].endExclusive <= other.start) {
|
||
i++;
|
||
}
|
||
return i < this._sortedRanges.length && this._sortedRanges[i].start < other.endExclusive;
|
||
}
|
||
intersectWithRange(other) {
|
||
// TODO use binary search + slice
|
||
const result = new OffsetRangeSet();
|
||
for (const range of this._sortedRanges) {
|
||
const intersection = range.intersect(other);
|
||
if (intersection) {
|
||
result.addRange(intersection);
|
||
}
|
||
}
|
||
return result;
|
||
}
|
||
intersectWithRangeLength(other) {
|
||
return this.intersectWithRange(other).length;
|
||
}
|
||
get length() {
|
||
return this._sortedRanges.reduce((prev, cur) => prev + cur.length, 0);
|
||
}
|
||
}
|
||
exports.OffsetRangeSet = OffsetRangeSet;
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[4/*vs/editor/common/core/position*/], __M([0/*require*/,1/*exports*/]), function (require, exports) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.Position = void 0;
|
||
/**
|
||
* A position in the editor.
|
||
*/
|
||
class Position {
|
||
constructor(lineNumber, column) {
|
||
this.lineNumber = lineNumber;
|
||
this.column = column;
|
||
}
|
||
/**
|
||
* Create a new position from this position.
|
||
*
|
||
* @param newLineNumber new line number
|
||
* @param newColumn new column
|
||
*/
|
||
with(newLineNumber = this.lineNumber, newColumn = this.column) {
|
||
if (newLineNumber === this.lineNumber && newColumn === this.column) {
|
||
return this;
|
||
}
|
||
else {
|
||
return new Position(newLineNumber, newColumn);
|
||
}
|
||
}
|
||
/**
|
||
* Derive a new position from this position.
|
||
*
|
||
* @param deltaLineNumber line number delta
|
||
* @param deltaColumn column delta
|
||
*/
|
||
delta(deltaLineNumber = 0, deltaColumn = 0) {
|
||
return this.with(this.lineNumber + deltaLineNumber, this.column + deltaColumn);
|
||
}
|
||
/**
|
||
* Test if this position equals other position
|
||
*/
|
||
equals(other) {
|
||
return Position.equals(this, other);
|
||
}
|
||
/**
|
||
* Test if position `a` equals position `b`
|
||
*/
|
||
static equals(a, b) {
|
||
if (!a && !b) {
|
||
return true;
|
||
}
|
||
return (!!a &&
|
||
!!b &&
|
||
a.lineNumber === b.lineNumber &&
|
||
a.column === b.column);
|
||
}
|
||
/**
|
||
* Test if this position is before other position.
|
||
* If the two positions are equal, the result will be false.
|
||
*/
|
||
isBefore(other) {
|
||
return Position.isBefore(this, other);
|
||
}
|
||
/**
|
||
* Test if position `a` is before position `b`.
|
||
* If the two positions are equal, the result will be false.
|
||
*/
|
||
static isBefore(a, b) {
|
||
if (a.lineNumber < b.lineNumber) {
|
||
return true;
|
||
}
|
||
if (b.lineNumber < a.lineNumber) {
|
||
return false;
|
||
}
|
||
return a.column < b.column;
|
||
}
|
||
/**
|
||
* Test if this position is before other position.
|
||
* If the two positions are equal, the result will be true.
|
||
*/
|
||
isBeforeOrEqual(other) {
|
||
return Position.isBeforeOrEqual(this, other);
|
||
}
|
||
/**
|
||
* Test if position `a` is before position `b`.
|
||
* If the two positions are equal, the result will be true.
|
||
*/
|
||
static isBeforeOrEqual(a, b) {
|
||
if (a.lineNumber < b.lineNumber) {
|
||
return true;
|
||
}
|
||
if (b.lineNumber < a.lineNumber) {
|
||
return false;
|
||
}
|
||
return a.column <= b.column;
|
||
}
|
||
/**
|
||
* A function that compares positions, useful for sorting
|
||
*/
|
||
static compare(a, b) {
|
||
const aLineNumber = a.lineNumber | 0;
|
||
const bLineNumber = b.lineNumber | 0;
|
||
if (aLineNumber === bLineNumber) {
|
||
const aColumn = a.column | 0;
|
||
const bColumn = b.column | 0;
|
||
return aColumn - bColumn;
|
||
}
|
||
return aLineNumber - bLineNumber;
|
||
}
|
||
/**
|
||
* Clone this position.
|
||
*/
|
||
clone() {
|
||
return new Position(this.lineNumber, this.column);
|
||
}
|
||
/**
|
||
* Convert to a human-readable representation.
|
||
*/
|
||
toString() {
|
||
return '(' + this.lineNumber + ',' + this.column + ')';
|
||
}
|
||
// ---
|
||
/**
|
||
* Create a `Position` from an `IPosition`.
|
||
*/
|
||
static lift(pos) {
|
||
return new Position(pos.lineNumber, pos.column);
|
||
}
|
||
/**
|
||
* Test if `obj` is an `IPosition`.
|
||
*/
|
||
static isIPosition(obj) {
|
||
return (obj
|
||
&& (typeof obj.lineNumber === 'number')
|
||
&& (typeof obj.column === 'number'));
|
||
}
|
||
toJSON() {
|
||
return {
|
||
lineNumber: this.lineNumber,
|
||
column: this.column
|
||
};
|
||
}
|
||
}
|
||
exports.Position = Position;
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[2/*vs/editor/common/core/range*/], __M([0/*require*/,1/*exports*/,4/*vs/editor/common/core/position*/]), function (require, exports, position_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.Range = void 0;
|
||
/**
|
||
* A range in the editor. (startLineNumber,startColumn) is <= (endLineNumber,endColumn)
|
||
*/
|
||
class Range {
|
||
constructor(startLineNumber, startColumn, endLineNumber, endColumn) {
|
||
if ((startLineNumber > endLineNumber) || (startLineNumber === endLineNumber && startColumn > endColumn)) {
|
||
this.startLineNumber = endLineNumber;
|
||
this.startColumn = endColumn;
|
||
this.endLineNumber = startLineNumber;
|
||
this.endColumn = startColumn;
|
||
}
|
||
else {
|
||
this.startLineNumber = startLineNumber;
|
||
this.startColumn = startColumn;
|
||
this.endLineNumber = endLineNumber;
|
||
this.endColumn = endColumn;
|
||
}
|
||
}
|
||
/**
|
||
* Test if this range is empty.
|
||
*/
|
||
isEmpty() {
|
||
return Range.isEmpty(this);
|
||
}
|
||
/**
|
||
* Test if `range` is empty.
|
||
*/
|
||
static isEmpty(range) {
|
||
return (range.startLineNumber === range.endLineNumber && range.startColumn === range.endColumn);
|
||
}
|
||
/**
|
||
* Test if position is in this range. If the position is at the edges, will return true.
|
||
*/
|
||
containsPosition(position) {
|
||
return Range.containsPosition(this, position);
|
||
}
|
||
/**
|
||
* Test if `position` is in `range`. If the position is at the edges, will return true.
|
||
*/
|
||
static containsPosition(range, position) {
|
||
if (position.lineNumber < range.startLineNumber || position.lineNumber > range.endLineNumber) {
|
||
return false;
|
||
}
|
||
if (position.lineNumber === range.startLineNumber && position.column < range.startColumn) {
|
||
return false;
|
||
}
|
||
if (position.lineNumber === range.endLineNumber && position.column > range.endColumn) {
|
||
return false;
|
||
}
|
||
return true;
|
||
}
|
||
/**
|
||
* Test if `position` is in `range`. If the position is at the edges, will return false.
|
||
* @internal
|
||
*/
|
||
static strictContainsPosition(range, position) {
|
||
if (position.lineNumber < range.startLineNumber || position.lineNumber > range.endLineNumber) {
|
||
return false;
|
||
}
|
||
if (position.lineNumber === range.startLineNumber && position.column <= range.startColumn) {
|
||
return false;
|
||
}
|
||
if (position.lineNumber === range.endLineNumber && position.column >= range.endColumn) {
|
||
return false;
|
||
}
|
||
return true;
|
||
}
|
||
/**
|
||
* Test if range is in this range. If the range is equal to this range, will return true.
|
||
*/
|
||
containsRange(range) {
|
||
return Range.containsRange(this, range);
|
||
}
|
||
/**
|
||
* Test if `otherRange` is in `range`. If the ranges are equal, will return true.
|
||
*/
|
||
static containsRange(range, otherRange) {
|
||
if (otherRange.startLineNumber < range.startLineNumber || otherRange.endLineNumber < range.startLineNumber) {
|
||
return false;
|
||
}
|
||
if (otherRange.startLineNumber > range.endLineNumber || otherRange.endLineNumber > range.endLineNumber) {
|
||
return false;
|
||
}
|
||
if (otherRange.startLineNumber === range.startLineNumber && otherRange.startColumn < range.startColumn) {
|
||
return false;
|
||
}
|
||
if (otherRange.endLineNumber === range.endLineNumber && otherRange.endColumn > range.endColumn) {
|
||
return false;
|
||
}
|
||
return true;
|
||
}
|
||
/**
|
||
* Test if `range` is strictly in this range. `range` must start after and end before this range for the result to be true.
|
||
*/
|
||
strictContainsRange(range) {
|
||
return Range.strictContainsRange(this, range);
|
||
}
|
||
/**
|
||
* Test if `otherRange` is strictly in `range` (must start after, and end before). If the ranges are equal, will return false.
|
||
*/
|
||
static strictContainsRange(range, otherRange) {
|
||
if (otherRange.startLineNumber < range.startLineNumber || otherRange.endLineNumber < range.startLineNumber) {
|
||
return false;
|
||
}
|
||
if (otherRange.startLineNumber > range.endLineNumber || otherRange.endLineNumber > range.endLineNumber) {
|
||
return false;
|
||
}
|
||
if (otherRange.startLineNumber === range.startLineNumber && otherRange.startColumn <= range.startColumn) {
|
||
return false;
|
||
}
|
||
if (otherRange.endLineNumber === range.endLineNumber && otherRange.endColumn >= range.endColumn) {
|
||
return false;
|
||
}
|
||
return true;
|
||
}
|
||
/**
|
||
* A reunion of the two ranges.
|
||
* The smallest position will be used as the start point, and the largest one as the end point.
|
||
*/
|
||
plusRange(range) {
|
||
return Range.plusRange(this, range);
|
||
}
|
||
/**
|
||
* A reunion of the two ranges.
|
||
* The smallest position will be used as the start point, and the largest one as the end point.
|
||
*/
|
||
static plusRange(a, b) {
|
||
let startLineNumber;
|
||
let startColumn;
|
||
let endLineNumber;
|
||
let endColumn;
|
||
if (b.startLineNumber < a.startLineNumber) {
|
||
startLineNumber = b.startLineNumber;
|
||
startColumn = b.startColumn;
|
||
}
|
||
else if (b.startLineNumber === a.startLineNumber) {
|
||
startLineNumber = b.startLineNumber;
|
||
startColumn = Math.min(b.startColumn, a.startColumn);
|
||
}
|
||
else {
|
||
startLineNumber = a.startLineNumber;
|
||
startColumn = a.startColumn;
|
||
}
|
||
if (b.endLineNumber > a.endLineNumber) {
|
||
endLineNumber = b.endLineNumber;
|
||
endColumn = b.endColumn;
|
||
}
|
||
else if (b.endLineNumber === a.endLineNumber) {
|
||
endLineNumber = b.endLineNumber;
|
||
endColumn = Math.max(b.endColumn, a.endColumn);
|
||
}
|
||
else {
|
||
endLineNumber = a.endLineNumber;
|
||
endColumn = a.endColumn;
|
||
}
|
||
return new Range(startLineNumber, startColumn, endLineNumber, endColumn);
|
||
}
|
||
/**
|
||
* A intersection of the two ranges.
|
||
*/
|
||
intersectRanges(range) {
|
||
return Range.intersectRanges(this, range);
|
||
}
|
||
/**
|
||
* A intersection of the two ranges.
|
||
*/
|
||
static intersectRanges(a, b) {
|
||
let resultStartLineNumber = a.startLineNumber;
|
||
let resultStartColumn = a.startColumn;
|
||
let resultEndLineNumber = a.endLineNumber;
|
||
let resultEndColumn = a.endColumn;
|
||
const otherStartLineNumber = b.startLineNumber;
|
||
const otherStartColumn = b.startColumn;
|
||
const otherEndLineNumber = b.endLineNumber;
|
||
const otherEndColumn = b.endColumn;
|
||
if (resultStartLineNumber < otherStartLineNumber) {
|
||
resultStartLineNumber = otherStartLineNumber;
|
||
resultStartColumn = otherStartColumn;
|
||
}
|
||
else if (resultStartLineNumber === otherStartLineNumber) {
|
||
resultStartColumn = Math.max(resultStartColumn, otherStartColumn);
|
||
}
|
||
if (resultEndLineNumber > otherEndLineNumber) {
|
||
resultEndLineNumber = otherEndLineNumber;
|
||
resultEndColumn = otherEndColumn;
|
||
}
|
||
else if (resultEndLineNumber === otherEndLineNumber) {
|
||
resultEndColumn = Math.min(resultEndColumn, otherEndColumn);
|
||
}
|
||
// Check if selection is now empty
|
||
if (resultStartLineNumber > resultEndLineNumber) {
|
||
return null;
|
||
}
|
||
if (resultStartLineNumber === resultEndLineNumber && resultStartColumn > resultEndColumn) {
|
||
return null;
|
||
}
|
||
return new Range(resultStartLineNumber, resultStartColumn, resultEndLineNumber, resultEndColumn);
|
||
}
|
||
/**
|
||
* Test if this range equals other.
|
||
*/
|
||
equalsRange(other) {
|
||
return Range.equalsRange(this, other);
|
||
}
|
||
/**
|
||
* Test if range `a` equals `b`.
|
||
*/
|
||
static equalsRange(a, b) {
|
||
if (!a && !b) {
|
||
return true;
|
||
}
|
||
return (!!a &&
|
||
!!b &&
|
||
a.startLineNumber === b.startLineNumber &&
|
||
a.startColumn === b.startColumn &&
|
||
a.endLineNumber === b.endLineNumber &&
|
||
a.endColumn === b.endColumn);
|
||
}
|
||
/**
|
||
* Return the end position (which will be after or equal to the start position)
|
||
*/
|
||
getEndPosition() {
|
||
return Range.getEndPosition(this);
|
||
}
|
||
/**
|
||
* Return the end position (which will be after or equal to the start position)
|
||
*/
|
||
static getEndPosition(range) {
|
||
return new position_1.Position(range.endLineNumber, range.endColumn);
|
||
}
|
||
/**
|
||
* Return the start position (which will be before or equal to the end position)
|
||
*/
|
||
getStartPosition() {
|
||
return Range.getStartPosition(this);
|
||
}
|
||
/**
|
||
* Return the start position (which will be before or equal to the end position)
|
||
*/
|
||
static getStartPosition(range) {
|
||
return new position_1.Position(range.startLineNumber, range.startColumn);
|
||
}
|
||
/**
|
||
* Transform to a user presentable string representation.
|
||
*/
|
||
toString() {
|
||
return '[' + this.startLineNumber + ',' + this.startColumn + ' -> ' + this.endLineNumber + ',' + this.endColumn + ']';
|
||
}
|
||
/**
|
||
* Create a new range using this range's start position, and using endLineNumber and endColumn as the end position.
|
||
*/
|
||
setEndPosition(endLineNumber, endColumn) {
|
||
return new Range(this.startLineNumber, this.startColumn, endLineNumber, endColumn);
|
||
}
|
||
/**
|
||
* Create a new range using this range's end position, and using startLineNumber and startColumn as the start position.
|
||
*/
|
||
setStartPosition(startLineNumber, startColumn) {
|
||
return new Range(startLineNumber, startColumn, this.endLineNumber, this.endColumn);
|
||
}
|
||
/**
|
||
* Create a new empty range using this range's start position.
|
||
*/
|
||
collapseToStart() {
|
||
return Range.collapseToStart(this);
|
||
}
|
||
/**
|
||
* Create a new empty range using this range's start position.
|
||
*/
|
||
static collapseToStart(range) {
|
||
return new Range(range.startLineNumber, range.startColumn, range.startLineNumber, range.startColumn);
|
||
}
|
||
/**
|
||
* Create a new empty range using this range's end position.
|
||
*/
|
||
collapseToEnd() {
|
||
return Range.collapseToEnd(this);
|
||
}
|
||
/**
|
||
* Create a new empty range using this range's end position.
|
||
*/
|
||
static collapseToEnd(range) {
|
||
return new Range(range.endLineNumber, range.endColumn, range.endLineNumber, range.endColumn);
|
||
}
|
||
/**
|
||
* Moves the range by the given amount of lines.
|
||
*/
|
||
delta(lineCount) {
|
||
return new Range(this.startLineNumber + lineCount, this.startColumn, this.endLineNumber + lineCount, this.endColumn);
|
||
}
|
||
// ---
|
||
static fromPositions(start, end = start) {
|
||
return new Range(start.lineNumber, start.column, end.lineNumber, end.column);
|
||
}
|
||
static lift(range) {
|
||
if (!range) {
|
||
return null;
|
||
}
|
||
return new Range(range.startLineNumber, range.startColumn, range.endLineNumber, range.endColumn);
|
||
}
|
||
/**
|
||
* Test if `obj` is an `IRange`.
|
||
*/
|
||
static isIRange(obj) {
|
||
return (obj
|
||
&& (typeof obj.startLineNumber === 'number')
|
||
&& (typeof obj.startColumn === 'number')
|
||
&& (typeof obj.endLineNumber === 'number')
|
||
&& (typeof obj.endColumn === 'number'));
|
||
}
|
||
/**
|
||
* Test if the two ranges are touching in any way.
|
||
*/
|
||
static areIntersectingOrTouching(a, b) {
|
||
// Check if `a` is before `b`
|
||
if (a.endLineNumber < b.startLineNumber || (a.endLineNumber === b.startLineNumber && a.endColumn < b.startColumn)) {
|
||
return false;
|
||
}
|
||
// Check if `b` is before `a`
|
||
if (b.endLineNumber < a.startLineNumber || (b.endLineNumber === a.startLineNumber && b.endColumn < a.startColumn)) {
|
||
return false;
|
||
}
|
||
// These ranges must intersect
|
||
return true;
|
||
}
|
||
/**
|
||
* Test if the two ranges are intersecting. If the ranges are touching it returns true.
|
||
*/
|
||
static areIntersecting(a, b) {
|
||
// Check if `a` is before `b`
|
||
if (a.endLineNumber < b.startLineNumber || (a.endLineNumber === b.startLineNumber && a.endColumn <= b.startColumn)) {
|
||
return false;
|
||
}
|
||
// Check if `b` is before `a`
|
||
if (b.endLineNumber < a.startLineNumber || (b.endLineNumber === a.startLineNumber && b.endColumn <= a.startColumn)) {
|
||
return false;
|
||
}
|
||
// These ranges must intersect
|
||
return true;
|
||
}
|
||
/**
|
||
* A function that compares ranges, useful for sorting ranges
|
||
* It will first compare ranges on the startPosition and then on the endPosition
|
||
*/
|
||
static compareRangesUsingStarts(a, b) {
|
||
if (a && b) {
|
||
const aStartLineNumber = a.startLineNumber | 0;
|
||
const bStartLineNumber = b.startLineNumber | 0;
|
||
if (aStartLineNumber === bStartLineNumber) {
|
||
const aStartColumn = a.startColumn | 0;
|
||
const bStartColumn = b.startColumn | 0;
|
||
if (aStartColumn === bStartColumn) {
|
||
const aEndLineNumber = a.endLineNumber | 0;
|
||
const bEndLineNumber = b.endLineNumber | 0;
|
||
if (aEndLineNumber === bEndLineNumber) {
|
||
const aEndColumn = a.endColumn | 0;
|
||
const bEndColumn = b.endColumn | 0;
|
||
return aEndColumn - bEndColumn;
|
||
}
|
||
return aEndLineNumber - bEndLineNumber;
|
||
}
|
||
return aStartColumn - bStartColumn;
|
||
}
|
||
return aStartLineNumber - bStartLineNumber;
|
||
}
|
||
const aExists = (a ? 1 : 0);
|
||
const bExists = (b ? 1 : 0);
|
||
return aExists - bExists;
|
||
}
|
||
/**
|
||
* A function that compares ranges, useful for sorting ranges
|
||
* It will first compare ranges on the endPosition and then on the startPosition
|
||
*/
|
||
static compareRangesUsingEnds(a, b) {
|
||
if (a.endLineNumber === b.endLineNumber) {
|
||
if (a.endColumn === b.endColumn) {
|
||
if (a.startLineNumber === b.startLineNumber) {
|
||
return a.startColumn - b.startColumn;
|
||
}
|
||
return a.startLineNumber - b.startLineNumber;
|
||
}
|
||
return a.endColumn - b.endColumn;
|
||
}
|
||
return a.endLineNumber - b.endLineNumber;
|
||
}
|
||
/**
|
||
* Test if the range spans multiple lines.
|
||
*/
|
||
static spansMultipleLines(range) {
|
||
return range.endLineNumber > range.startLineNumber;
|
||
}
|
||
toJSON() {
|
||
return this;
|
||
}
|
||
}
|
||
exports.Range = Range;
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[13/*vs/editor/common/core/lineRange*/], __M([0/*require*/,1/*exports*/,3/*vs/base/common/errors*/,5/*vs/editor/common/core/offsetRange*/,2/*vs/editor/common/core/range*/,15/*vs/base/common/arraysFind*/]), function (require, exports, errors_1, offsetRange_1, range_1, arraysFind_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.LineRangeSet = exports.LineRange = void 0;
|
||
/**
|
||
* A range of lines (1-based).
|
||
*/
|
||
class LineRange {
|
||
static fromRangeInclusive(range) {
|
||
return new LineRange(range.startLineNumber, range.endLineNumber + 1);
|
||
}
|
||
/**
|
||
* @param lineRanges An array of sorted line ranges.
|
||
*/
|
||
static joinMany(lineRanges) {
|
||
if (lineRanges.length === 0) {
|
||
return [];
|
||
}
|
||
let result = new LineRangeSet(lineRanges[0].slice());
|
||
for (let i = 1; i < lineRanges.length; i++) {
|
||
result = result.getUnion(new LineRangeSet(lineRanges[i].slice()));
|
||
}
|
||
return result.ranges;
|
||
}
|
||
static join(lineRanges) {
|
||
if (lineRanges.length === 0) {
|
||
throw new errors_1.BugIndicatingError('lineRanges cannot be empty');
|
||
}
|
||
let startLineNumber = lineRanges[0].startLineNumber;
|
||
let endLineNumberExclusive = lineRanges[0].endLineNumberExclusive;
|
||
for (let i = 1; i < lineRanges.length; i++) {
|
||
startLineNumber = Math.min(startLineNumber, lineRanges[i].startLineNumber);
|
||
endLineNumberExclusive = Math.max(endLineNumberExclusive, lineRanges[i].endLineNumberExclusive);
|
||
}
|
||
return new LineRange(startLineNumber, endLineNumberExclusive);
|
||
}
|
||
static ofLength(startLineNumber, length) {
|
||
return new LineRange(startLineNumber, startLineNumber + length);
|
||
}
|
||
/**
|
||
* @internal
|
||
*/
|
||
static deserialize(lineRange) {
|
||
return new LineRange(lineRange[0], lineRange[1]);
|
||
}
|
||
constructor(startLineNumber, endLineNumberExclusive) {
|
||
if (startLineNumber > endLineNumberExclusive) {
|
||
throw new errors_1.BugIndicatingError(`startLineNumber ${startLineNumber} cannot be after endLineNumberExclusive ${endLineNumberExclusive}`);
|
||
}
|
||
this.startLineNumber = startLineNumber;
|
||
this.endLineNumberExclusive = endLineNumberExclusive;
|
||
}
|
||
/**
|
||
* Indicates if this line range contains the given line number.
|
||
*/
|
||
contains(lineNumber) {
|
||
return this.startLineNumber <= lineNumber && lineNumber < this.endLineNumberExclusive;
|
||
}
|
||
/**
|
||
* Indicates if this line range is empty.
|
||
*/
|
||
get isEmpty() {
|
||
return this.startLineNumber === this.endLineNumberExclusive;
|
||
}
|
||
/**
|
||
* Moves this line range by the given offset of line numbers.
|
||
*/
|
||
delta(offset) {
|
||
return new LineRange(this.startLineNumber + offset, this.endLineNumberExclusive + offset);
|
||
}
|
||
deltaLength(offset) {
|
||
return new LineRange(this.startLineNumber, this.endLineNumberExclusive + offset);
|
||
}
|
||
/**
|
||
* The number of lines this line range spans.
|
||
*/
|
||
get length() {
|
||
return this.endLineNumberExclusive - this.startLineNumber;
|
||
}
|
||
/**
|
||
* Creates a line range that combines this and the given line range.
|
||
*/
|
||
join(other) {
|
||
return new LineRange(Math.min(this.startLineNumber, other.startLineNumber), Math.max(this.endLineNumberExclusive, other.endLineNumberExclusive));
|
||
}
|
||
toString() {
|
||
return `[${this.startLineNumber},${this.endLineNumberExclusive})`;
|
||
}
|
||
/**
|
||
* The resulting range is empty if the ranges do not intersect, but touch.
|
||
* If the ranges don't even touch, the result is undefined.
|
||
*/
|
||
intersect(other) {
|
||
const startLineNumber = Math.max(this.startLineNumber, other.startLineNumber);
|
||
const endLineNumberExclusive = Math.min(this.endLineNumberExclusive, other.endLineNumberExclusive);
|
||
if (startLineNumber <= endLineNumberExclusive) {
|
||
return new LineRange(startLineNumber, endLineNumberExclusive);
|
||
}
|
||
return undefined;
|
||
}
|
||
intersectsStrict(other) {
|
||
return this.startLineNumber < other.endLineNumberExclusive && other.startLineNumber < this.endLineNumberExclusive;
|
||
}
|
||
overlapOrTouch(other) {
|
||
return this.startLineNumber <= other.endLineNumberExclusive && other.startLineNumber <= this.endLineNumberExclusive;
|
||
}
|
||
equals(b) {
|
||
return this.startLineNumber === b.startLineNumber && this.endLineNumberExclusive === b.endLineNumberExclusive;
|
||
}
|
||
toInclusiveRange() {
|
||
if (this.isEmpty) {
|
||
return null;
|
||
}
|
||
return new range_1.Range(this.startLineNumber, 1, this.endLineNumberExclusive - 1, Number.MAX_SAFE_INTEGER);
|
||
}
|
||
/**
|
||
* @deprecated Using this function is discouraged because it might lead to bugs: The end position is not guaranteed to be a valid position!
|
||
*/
|
||
toExclusiveRange() {
|
||
return new range_1.Range(this.startLineNumber, 1, this.endLineNumberExclusive, 1);
|
||
}
|
||
mapToLineArray(f) {
|
||
const result = [];
|
||
for (let lineNumber = this.startLineNumber; lineNumber < this.endLineNumberExclusive; lineNumber++) {
|
||
result.push(f(lineNumber));
|
||
}
|
||
return result;
|
||
}
|
||
forEach(f) {
|
||
for (let lineNumber = this.startLineNumber; lineNumber < this.endLineNumberExclusive; lineNumber++) {
|
||
f(lineNumber);
|
||
}
|
||
}
|
||
/**
|
||
* @internal
|
||
*/
|
||
serialize() {
|
||
return [this.startLineNumber, this.endLineNumberExclusive];
|
||
}
|
||
includes(lineNumber) {
|
||
return this.startLineNumber <= lineNumber && lineNumber < this.endLineNumberExclusive;
|
||
}
|
||
/**
|
||
* Converts this 1-based line range to a 0-based offset range (subtracts 1!).
|
||
* @internal
|
||
*/
|
||
toOffsetRange() {
|
||
return new offsetRange_1.OffsetRange(this.startLineNumber - 1, this.endLineNumberExclusive - 1);
|
||
}
|
||
}
|
||
exports.LineRange = LineRange;
|
||
class LineRangeSet {
|
||
constructor(
|
||
/**
|
||
* Sorted by start line number.
|
||
* No two line ranges are touching or intersecting.
|
||
*/
|
||
_normalizedRanges = []) {
|
||
this._normalizedRanges = _normalizedRanges;
|
||
}
|
||
get ranges() {
|
||
return this._normalizedRanges;
|
||
}
|
||
addRange(range) {
|
||
if (range.length === 0) {
|
||
return;
|
||
}
|
||
// Idea: Find joinRange such that:
|
||
// replaceRange = _normalizedRanges.replaceRange(joinRange, range.joinAll(joinRange.map(idx => this._normalizedRanges[idx])))
|
||
// idx of first element that touches range or that is after range
|
||
const joinRangeStartIdx = (0, arraysFind_1.findFirstIdxMonotonousOrArrLen)(this._normalizedRanges, r => r.endLineNumberExclusive >= range.startLineNumber);
|
||
// idx of element after { last element that touches range or that is before range }
|
||
const joinRangeEndIdxExclusive = (0, arraysFind_1.findLastIdxMonotonous)(this._normalizedRanges, r => r.startLineNumber <= range.endLineNumberExclusive) + 1;
|
||
if (joinRangeStartIdx === joinRangeEndIdxExclusive) {
|
||
// If there is no element that touches range, then joinRangeStartIdx === joinRangeEndIdxExclusive and that value is the index of the element after range
|
||
this._normalizedRanges.splice(joinRangeStartIdx, 0, range);
|
||
}
|
||
else if (joinRangeStartIdx === joinRangeEndIdxExclusive - 1) {
|
||
// Else, there is an element that touches range and in this case it is both the first and last element. Thus we can replace it
|
||
const joinRange = this._normalizedRanges[joinRangeStartIdx];
|
||
this._normalizedRanges[joinRangeStartIdx] = joinRange.join(range);
|
||
}
|
||
else {
|
||
// First and last element are different - we need to replace the entire range
|
||
const joinRange = this._normalizedRanges[joinRangeStartIdx].join(this._normalizedRanges[joinRangeEndIdxExclusive - 1]).join(range);
|
||
this._normalizedRanges.splice(joinRangeStartIdx, joinRangeEndIdxExclusive - joinRangeStartIdx, joinRange);
|
||
}
|
||
}
|
||
contains(lineNumber) {
|
||
const rangeThatStartsBeforeEnd = (0, arraysFind_1.findLastMonotonous)(this._normalizedRanges, r => r.startLineNumber <= lineNumber);
|
||
return !!rangeThatStartsBeforeEnd && rangeThatStartsBeforeEnd.endLineNumberExclusive > lineNumber;
|
||
}
|
||
intersects(range) {
|
||
const rangeThatStartsBeforeEnd = (0, arraysFind_1.findLastMonotonous)(this._normalizedRanges, r => r.startLineNumber < range.endLineNumberExclusive);
|
||
return !!rangeThatStartsBeforeEnd && rangeThatStartsBeforeEnd.endLineNumberExclusive > range.startLineNumber;
|
||
}
|
||
getUnion(other) {
|
||
if (this._normalizedRanges.length === 0) {
|
||
return other;
|
||
}
|
||
if (other._normalizedRanges.length === 0) {
|
||
return this;
|
||
}
|
||
const result = [];
|
||
let i1 = 0;
|
||
let i2 = 0;
|
||
let current = null;
|
||
while (i1 < this._normalizedRanges.length || i2 < other._normalizedRanges.length) {
|
||
let next = null;
|
||
if (i1 < this._normalizedRanges.length && i2 < other._normalizedRanges.length) {
|
||
const lineRange1 = this._normalizedRanges[i1];
|
||
const lineRange2 = other._normalizedRanges[i2];
|
||
if (lineRange1.startLineNumber < lineRange2.startLineNumber) {
|
||
next = lineRange1;
|
||
i1++;
|
||
}
|
||
else {
|
||
next = lineRange2;
|
||
i2++;
|
||
}
|
||
}
|
||
else if (i1 < this._normalizedRanges.length) {
|
||
next = this._normalizedRanges[i1];
|
||
i1++;
|
||
}
|
||
else {
|
||
next = other._normalizedRanges[i2];
|
||
i2++;
|
||
}
|
||
if (current === null) {
|
||
current = next;
|
||
}
|
||
else {
|
||
if (current.endLineNumberExclusive >= next.startLineNumber) {
|
||
// merge
|
||
current = new LineRange(current.startLineNumber, Math.max(current.endLineNumberExclusive, next.endLineNumberExclusive));
|
||
}
|
||
else {
|
||
// push
|
||
result.push(current);
|
||
current = next;
|
||
}
|
||
}
|
||
}
|
||
if (current !== null) {
|
||
result.push(current);
|
||
}
|
||
return new LineRangeSet(result);
|
||
}
|
||
/**
|
||
* Subtracts all ranges in this set from `range` and returns the result.
|
||
*/
|
||
subtractFrom(range) {
|
||
// idx of first element that touches range or that is after range
|
||
const joinRangeStartIdx = (0, arraysFind_1.findFirstIdxMonotonousOrArrLen)(this._normalizedRanges, r => r.endLineNumberExclusive >= range.startLineNumber);
|
||
// idx of element after { last element that touches range or that is before range }
|
||
const joinRangeEndIdxExclusive = (0, arraysFind_1.findLastIdxMonotonous)(this._normalizedRanges, r => r.startLineNumber <= range.endLineNumberExclusive) + 1;
|
||
if (joinRangeStartIdx === joinRangeEndIdxExclusive) {
|
||
return new LineRangeSet([range]);
|
||
}
|
||
const result = [];
|
||
let startLineNumber = range.startLineNumber;
|
||
for (let i = joinRangeStartIdx; i < joinRangeEndIdxExclusive; i++) {
|
||
const r = this._normalizedRanges[i];
|
||
if (r.startLineNumber > startLineNumber) {
|
||
result.push(new LineRange(startLineNumber, r.startLineNumber));
|
||
}
|
||
startLineNumber = r.endLineNumberExclusive;
|
||
}
|
||
if (startLineNumber < range.endLineNumberExclusive) {
|
||
result.push(new LineRange(startLineNumber, range.endLineNumberExclusive));
|
||
}
|
||
return new LineRangeSet(result);
|
||
}
|
||
toString() {
|
||
return this._normalizedRanges.map(r => r.toString()).join(', ');
|
||
}
|
||
getIntersection(other) {
|
||
const result = [];
|
||
let i1 = 0;
|
||
let i2 = 0;
|
||
while (i1 < this._normalizedRanges.length && i2 < other._normalizedRanges.length) {
|
||
const r1 = this._normalizedRanges[i1];
|
||
const r2 = other._normalizedRanges[i2];
|
||
const i = r1.intersect(r2);
|
||
if (i && !i.isEmpty) {
|
||
result.push(i);
|
||
}
|
||
if (r1.endLineNumberExclusive < r2.endLineNumberExclusive) {
|
||
i1++;
|
||
}
|
||
else {
|
||
i2++;
|
||
}
|
||
}
|
||
return new LineRangeSet(result);
|
||
}
|
||
getWithDelta(value) {
|
||
return new LineRangeSet(this._normalizedRanges.map(r => r.delta(value)));
|
||
}
|
||
}
|
||
exports.LineRangeSet = LineRangeSet;
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[48/*vs/editor/common/core/selection*/], __M([0/*require*/,1/*exports*/,4/*vs/editor/common/core/position*/,2/*vs/editor/common/core/range*/]), function (require, exports, position_1, range_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.Selection = void 0;
|
||
/**
|
||
* A selection in the editor.
|
||
* The selection is a range that has an orientation.
|
||
*/
|
||
class Selection extends range_1.Range {
|
||
constructor(selectionStartLineNumber, selectionStartColumn, positionLineNumber, positionColumn) {
|
||
super(selectionStartLineNumber, selectionStartColumn, positionLineNumber, positionColumn);
|
||
this.selectionStartLineNumber = selectionStartLineNumber;
|
||
this.selectionStartColumn = selectionStartColumn;
|
||
this.positionLineNumber = positionLineNumber;
|
||
this.positionColumn = positionColumn;
|
||
}
|
||
/**
|
||
* Transform to a human-readable representation.
|
||
*/
|
||
toString() {
|
||
return '[' + this.selectionStartLineNumber + ',' + this.selectionStartColumn + ' -> ' + this.positionLineNumber + ',' + this.positionColumn + ']';
|
||
}
|
||
/**
|
||
* Test if equals other selection.
|
||
*/
|
||
equalsSelection(other) {
|
||
return (Selection.selectionsEqual(this, other));
|
||
}
|
||
/**
|
||
* Test if the two selections are equal.
|
||
*/
|
||
static selectionsEqual(a, b) {
|
||
return (a.selectionStartLineNumber === b.selectionStartLineNumber &&
|
||
a.selectionStartColumn === b.selectionStartColumn &&
|
||
a.positionLineNumber === b.positionLineNumber &&
|
||
a.positionColumn === b.positionColumn);
|
||
}
|
||
/**
|
||
* Get directions (LTR or RTL).
|
||
*/
|
||
getDirection() {
|
||
if (this.selectionStartLineNumber === this.startLineNumber && this.selectionStartColumn === this.startColumn) {
|
||
return 0 /* SelectionDirection.LTR */;
|
||
}
|
||
return 1 /* SelectionDirection.RTL */;
|
||
}
|
||
/**
|
||
* Create a new selection with a different `positionLineNumber` and `positionColumn`.
|
||
*/
|
||
setEndPosition(endLineNumber, endColumn) {
|
||
if (this.getDirection() === 0 /* SelectionDirection.LTR */) {
|
||
return new Selection(this.startLineNumber, this.startColumn, endLineNumber, endColumn);
|
||
}
|
||
return new Selection(endLineNumber, endColumn, this.startLineNumber, this.startColumn);
|
||
}
|
||
/**
|
||
* Get the position at `positionLineNumber` and `positionColumn`.
|
||
*/
|
||
getPosition() {
|
||
return new position_1.Position(this.positionLineNumber, this.positionColumn);
|
||
}
|
||
/**
|
||
* Get the position at the start of the selection.
|
||
*/
|
||
getSelectionStart() {
|
||
return new position_1.Position(this.selectionStartLineNumber, this.selectionStartColumn);
|
||
}
|
||
/**
|
||
* Create a new selection with a different `selectionStartLineNumber` and `selectionStartColumn`.
|
||
*/
|
||
setStartPosition(startLineNumber, startColumn) {
|
||
if (this.getDirection() === 0 /* SelectionDirection.LTR */) {
|
||
return new Selection(startLineNumber, startColumn, this.endLineNumber, this.endColumn);
|
||
}
|
||
return new Selection(this.endLineNumber, this.endColumn, startLineNumber, startColumn);
|
||
}
|
||
// ----
|
||
/**
|
||
* Create a `Selection` from one or two positions
|
||
*/
|
||
static fromPositions(start, end = start) {
|
||
return new Selection(start.lineNumber, start.column, end.lineNumber, end.column);
|
||
}
|
||
/**
|
||
* Creates a `Selection` from a range, given a direction.
|
||
*/
|
||
static fromRange(range, direction) {
|
||
if (direction === 0 /* SelectionDirection.LTR */) {
|
||
return new Selection(range.startLineNumber, range.startColumn, range.endLineNumber, range.endColumn);
|
||
}
|
||
else {
|
||
return new Selection(range.endLineNumber, range.endColumn, range.startLineNumber, range.startColumn);
|
||
}
|
||
}
|
||
/**
|
||
* Create a `Selection` from an `ISelection`.
|
||
*/
|
||
static liftSelection(sel) {
|
||
return new Selection(sel.selectionStartLineNumber, sel.selectionStartColumn, sel.positionLineNumber, sel.positionColumn);
|
||
}
|
||
/**
|
||
* `a` equals `b`.
|
||
*/
|
||
static selectionsArrEqual(a, b) {
|
||
if (a && !b || !a && b) {
|
||
return false;
|
||
}
|
||
if (!a && !b) {
|
||
return true;
|
||
}
|
||
if (a.length !== b.length) {
|
||
return false;
|
||
}
|
||
for (let i = 0, len = a.length; i < len; i++) {
|
||
if (!this.selectionsEqual(a[i], b[i])) {
|
||
return false;
|
||
}
|
||
}
|
||
return true;
|
||
}
|
||
/**
|
||
* Test if `obj` is an `ISelection`.
|
||
*/
|
||
static isISelection(obj) {
|
||
return (obj
|
||
&& (typeof obj.selectionStartLineNumber === 'number')
|
||
&& (typeof obj.selectionStartColumn === 'number')
|
||
&& (typeof obj.positionLineNumber === 'number')
|
||
&& (typeof obj.positionColumn === 'number'));
|
||
}
|
||
/**
|
||
* Create with a direction.
|
||
*/
|
||
static createWithDirection(startLineNumber, startColumn, endLineNumber, endColumn, direction) {
|
||
if (direction === 0 /* SelectionDirection.LTR */) {
|
||
return new Selection(startLineNumber, startColumn, endLineNumber, endColumn);
|
||
}
|
||
return new Selection(endLineNumber, endColumn, startLineNumber, startColumn);
|
||
}
|
||
}
|
||
exports.Selection = Selection;
|
||
});
|
||
|
||
define(__m[30/*vs/editor/common/core/textLength*/], __M([0/*require*/,1/*exports*/,4/*vs/editor/common/core/position*/,2/*vs/editor/common/core/range*/]), function (require, exports, position_1, range_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.TextLength = void 0;
|
||
/**
|
||
* Represents a non-negative length of text in terms of line and column count.
|
||
*/
|
||
class TextLength {
|
||
static { this.zero = new TextLength(0, 0); }
|
||
static betweenPositions(position1, position2) {
|
||
if (position1.lineNumber === position2.lineNumber) {
|
||
return new TextLength(0, position2.column - position1.column);
|
||
}
|
||
else {
|
||
return new TextLength(position2.lineNumber - position1.lineNumber, position2.column - 1);
|
||
}
|
||
}
|
||
static ofRange(range) {
|
||
return TextLength.betweenPositions(range.getStartPosition(), range.getEndPosition());
|
||
}
|
||
static ofText(text) {
|
||
let line = 0;
|
||
let column = 0;
|
||
for (const c of text) {
|
||
if (c === '\n') {
|
||
line++;
|
||
column = 0;
|
||
}
|
||
else {
|
||
column++;
|
||
}
|
||
}
|
||
return new TextLength(line, column);
|
||
}
|
||
constructor(lineCount, columnCount) {
|
||
this.lineCount = lineCount;
|
||
this.columnCount = columnCount;
|
||
}
|
||
isGreaterThanOrEqualTo(other) {
|
||
if (this.lineCount !== other.lineCount) {
|
||
return this.lineCount > other.lineCount;
|
||
}
|
||
return this.columnCount >= other.columnCount;
|
||
}
|
||
createRange(startPosition) {
|
||
if (this.lineCount === 0) {
|
||
return new range_1.Range(startPosition.lineNumber, startPosition.column, startPosition.lineNumber, startPosition.column + this.columnCount);
|
||
}
|
||
else {
|
||
return new range_1.Range(startPosition.lineNumber, startPosition.column, startPosition.lineNumber + this.lineCount, this.columnCount + 1);
|
||
}
|
||
}
|
||
addToPosition(position) {
|
||
if (this.lineCount === 0) {
|
||
return new position_1.Position(position.lineNumber, position.column + this.columnCount);
|
||
}
|
||
else {
|
||
return new position_1.Position(position.lineNumber + this.lineCount, this.columnCount + 1);
|
||
}
|
||
}
|
||
toString() {
|
||
return `${this.lineCount},${this.columnCount}`;
|
||
}
|
||
}
|
||
exports.TextLength = TextLength;
|
||
});
|
||
|
||
define(__m[49/*vs/editor/common/core/positionToOffset*/], __M([0/*require*/,1/*exports*/,5/*vs/editor/common/core/offsetRange*/,30/*vs/editor/common/core/textLength*/]), function (require, exports, offsetRange_1, textLength_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.PositionOffsetTransformer = void 0;
|
||
class PositionOffsetTransformer {
|
||
constructor(text) {
|
||
this.text = text;
|
||
this.lineStartOffsetByLineIdx = [];
|
||
this.lineStartOffsetByLineIdx.push(0);
|
||
for (let i = 0; i < text.length; i++) {
|
||
if (text.charAt(i) === '\n') {
|
||
this.lineStartOffsetByLineIdx.push(i + 1);
|
||
}
|
||
}
|
||
}
|
||
getOffset(position) {
|
||
return this.lineStartOffsetByLineIdx[position.lineNumber - 1] + position.column - 1;
|
||
}
|
||
getOffsetRange(range) {
|
||
return new offsetRange_1.OffsetRange(this.getOffset(range.getStartPosition()), this.getOffset(range.getEndPosition()));
|
||
}
|
||
get textLength() {
|
||
const lineIdx = this.lineStartOffsetByLineIdx.length - 1;
|
||
return new textLength_1.TextLength(lineIdx, this.text.length - this.lineStartOffsetByLineIdx[lineIdx]);
|
||
}
|
||
}
|
||
exports.PositionOffsetTransformer = PositionOffsetTransformer;
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[50/*vs/editor/common/core/textEdit*/], __M([0/*require*/,1/*exports*/,12/*vs/base/common/assert*/,3/*vs/base/common/errors*/,4/*vs/editor/common/core/position*/,49/*vs/editor/common/core/positionToOffset*/,2/*vs/editor/common/core/range*/,30/*vs/editor/common/core/textLength*/]), function (require, exports, assert_1, errors_1, position_1, positionToOffset_1, range_1, textLength_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.StringText = exports.AbstractText = exports.SingleTextEdit = exports.TextEdit = void 0;
|
||
class TextEdit {
|
||
constructor(edits) {
|
||
this.edits = edits;
|
||
(0, assert_1.assertFn)(() => (0, assert_1.checkAdjacentItems)(edits, (a, b) => a.range.getEndPosition().isBeforeOrEqual(b.range.getStartPosition())));
|
||
}
|
||
apply(text) {
|
||
let result = '';
|
||
let lastEditEnd = new position_1.Position(1, 1);
|
||
for (const edit of this.edits) {
|
||
const editRange = edit.range;
|
||
const editStart = editRange.getStartPosition();
|
||
const editEnd = editRange.getEndPosition();
|
||
const r = rangeFromPositions(lastEditEnd, editStart);
|
||
if (!r.isEmpty()) {
|
||
result += text.getValueOfRange(r);
|
||
}
|
||
result += edit.text;
|
||
lastEditEnd = editEnd;
|
||
}
|
||
const r = rangeFromPositions(lastEditEnd, text.endPositionExclusive);
|
||
if (!r.isEmpty()) {
|
||
result += text.getValueOfRange(r);
|
||
}
|
||
return result;
|
||
}
|
||
applyToString(str) {
|
||
const strText = new StringText(str);
|
||
return this.apply(strText);
|
||
}
|
||
getNewRanges() {
|
||
const newRanges = [];
|
||
let previousEditEndLineNumber = 0;
|
||
let lineOffset = 0;
|
||
let columnOffset = 0;
|
||
for (const edit of this.edits) {
|
||
const textLength = textLength_1.TextLength.ofText(edit.text);
|
||
const newRangeStart = position_1.Position.lift({
|
||
lineNumber: edit.range.startLineNumber + lineOffset,
|
||
column: edit.range.startColumn + (edit.range.startLineNumber === previousEditEndLineNumber ? columnOffset : 0)
|
||
});
|
||
const newRange = textLength.createRange(newRangeStart);
|
||
newRanges.push(newRange);
|
||
lineOffset = newRange.endLineNumber - edit.range.endLineNumber;
|
||
columnOffset = newRange.endColumn - edit.range.endColumn;
|
||
previousEditEndLineNumber = edit.range.endLineNumber;
|
||
}
|
||
return newRanges;
|
||
}
|
||
}
|
||
exports.TextEdit = TextEdit;
|
||
class SingleTextEdit {
|
||
constructor(range, text) {
|
||
this.range = range;
|
||
this.text = text;
|
||
}
|
||
toSingleEditOperation() {
|
||
return {
|
||
range: this.range,
|
||
text: this.text,
|
||
};
|
||
}
|
||
}
|
||
exports.SingleTextEdit = SingleTextEdit;
|
||
function rangeFromPositions(start, end) {
|
||
if (start.lineNumber === end.lineNumber && start.column === Number.MAX_SAFE_INTEGER) {
|
||
return range_1.Range.fromPositions(end, end);
|
||
}
|
||
else if (!start.isBeforeOrEqual(end)) {
|
||
throw new errors_1.BugIndicatingError('start must be before end');
|
||
}
|
||
return new range_1.Range(start.lineNumber, start.column, end.lineNumber, end.column);
|
||
}
|
||
class AbstractText {
|
||
get endPositionExclusive() {
|
||
return this.length.addToPosition(new position_1.Position(1, 1));
|
||
}
|
||
}
|
||
exports.AbstractText = AbstractText;
|
||
class StringText extends AbstractText {
|
||
constructor(value) {
|
||
super();
|
||
this.value = value;
|
||
this._t = new positionToOffset_1.PositionOffsetTransformer(this.value);
|
||
}
|
||
getValueOfRange(range) {
|
||
return this._t.getOffsetRange(range).substring(this.value);
|
||
}
|
||
get length() {
|
||
return this._t.textLength;
|
||
}
|
||
}
|
||
exports.StringText = StringText;
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[51/*vs/editor/common/core/wordCharacterClassifier*/], __M([0/*require*/,1/*exports*/,21/*vs/base/common/map*/,29/*vs/editor/common/core/characterClassifier*/]), function (require, exports, map_1, characterClassifier_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.WordCharacterClassifier = void 0;
|
||
exports.getMapForWordSeparators = getMapForWordSeparators;
|
||
class WordCharacterClassifier extends characterClassifier_1.CharacterClassifier {
|
||
constructor(wordSeparators, intlSegmenterLocales) {
|
||
super(0 /* WordCharacterClass.Regular */);
|
||
this._segmenter = null;
|
||
this._cachedLine = null;
|
||
this._cachedSegments = [];
|
||
this.intlSegmenterLocales = intlSegmenterLocales;
|
||
if (this.intlSegmenterLocales.length > 0) {
|
||
this._segmenter = new Intl.Segmenter(this.intlSegmenterLocales, { granularity: 'word' });
|
||
}
|
||
else {
|
||
this._segmenter = null;
|
||
}
|
||
for (let i = 0, len = wordSeparators.length; i < len; i++) {
|
||
this.set(wordSeparators.charCodeAt(i), 2 /* WordCharacterClass.WordSeparator */);
|
||
}
|
||
this.set(32 /* CharCode.Space */, 1 /* WordCharacterClass.Whitespace */);
|
||
this.set(9 /* CharCode.Tab */, 1 /* WordCharacterClass.Whitespace */);
|
||
}
|
||
findPrevIntlWordBeforeOrAtOffset(line, offset) {
|
||
let candidate = null;
|
||
for (const segment of this._getIntlSegmenterWordsOnLine(line)) {
|
||
if (segment.index > offset) {
|
||
break;
|
||
}
|
||
candidate = segment;
|
||
}
|
||
return candidate;
|
||
}
|
||
findNextIntlWordAtOrAfterOffset(lineContent, offset) {
|
||
for (const segment of this._getIntlSegmenterWordsOnLine(lineContent)) {
|
||
if (segment.index < offset) {
|
||
continue;
|
||
}
|
||
return segment;
|
||
}
|
||
return null;
|
||
}
|
||
_getIntlSegmenterWordsOnLine(line) {
|
||
if (!this._segmenter) {
|
||
return [];
|
||
}
|
||
// Check if the line has changed from the previous call
|
||
if (this._cachedLine === line) {
|
||
return this._cachedSegments;
|
||
}
|
||
// Update the cache with the new line
|
||
this._cachedLine = line;
|
||
this._cachedSegments = this._filterWordSegments(this._segmenter.segment(line));
|
||
return this._cachedSegments;
|
||
}
|
||
_filterWordSegments(segments) {
|
||
const result = [];
|
||
for (const segment of segments) {
|
||
if (this._isWordLike(segment)) {
|
||
result.push(segment);
|
||
}
|
||
}
|
||
return result;
|
||
}
|
||
_isWordLike(segment) {
|
||
if (segment.isWordLike) {
|
||
return true;
|
||
}
|
||
return false;
|
||
}
|
||
}
|
||
exports.WordCharacterClassifier = WordCharacterClassifier;
|
||
const wordClassifierCache = new map_1.LRUCache(10);
|
||
function getMapForWordSeparators(wordSeparators, intlSegmenterLocales) {
|
||
const key = `${wordSeparators}/${intlSegmenterLocales.join(',')}`;
|
||
let result = wordClassifierCache.get(key);
|
||
if (!result) {
|
||
result = new WordCharacterClassifier(wordSeparators, intlSegmenterLocales);
|
||
wordClassifierCache.set(key, result);
|
||
}
|
||
return result;
|
||
}
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[31/*vs/editor/common/core/wordHelper*/], __M([0/*require*/,1/*exports*/,19/*vs/base/common/iterator*/,20/*vs/base/common/linkedList*/]), function (require, exports, iterator_1, linkedList_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.DEFAULT_WORD_REGEXP = exports.USUAL_WORD_SEPARATORS = void 0;
|
||
exports.ensureValidWordDefinition = ensureValidWordDefinition;
|
||
exports.getWordAtText = getWordAtText;
|
||
exports.USUAL_WORD_SEPARATORS = '`~!@#$%^&*()-=+[{]}\\|;:\'",.<>/?';
|
||
/**
|
||
* Create a word definition regular expression based on default word separators.
|
||
* Optionally provide allowed separators that should be included in words.
|
||
*
|
||
* The default would look like this:
|
||
* /(-?\d*\.\d\w*)|([^\`\~\!\@\#\$\%\^\&\*\(\)\-\=\+\[\{\]\}\\\|\;\:\'\"\,\.\<\>\/\?\s]+)/g
|
||
*/
|
||
function createWordRegExp(allowInWords = '') {
|
||
let source = '(-?\\d*\\.\\d\\w*)|([^';
|
||
for (const sep of exports.USUAL_WORD_SEPARATORS) {
|
||
if (allowInWords.indexOf(sep) >= 0) {
|
||
continue;
|
||
}
|
||
source += '\\' + sep;
|
||
}
|
||
source += '\\s]+)';
|
||
return new RegExp(source, 'g');
|
||
}
|
||
// catches numbers (including floating numbers) in the first group, and alphanum in the second
|
||
exports.DEFAULT_WORD_REGEXP = createWordRegExp();
|
||
function ensureValidWordDefinition(wordDefinition) {
|
||
let result = exports.DEFAULT_WORD_REGEXP;
|
||
if (wordDefinition && (wordDefinition instanceof RegExp)) {
|
||
if (!wordDefinition.global) {
|
||
let flags = 'g';
|
||
if (wordDefinition.ignoreCase) {
|
||
flags += 'i';
|
||
}
|
||
if (wordDefinition.multiline) {
|
||
flags += 'm';
|
||
}
|
||
if (wordDefinition.unicode) {
|
||
flags += 'u';
|
||
}
|
||
result = new RegExp(wordDefinition.source, flags);
|
||
}
|
||
else {
|
||
result = wordDefinition;
|
||
}
|
||
}
|
||
result.lastIndex = 0;
|
||
return result;
|
||
}
|
||
const _defaultConfig = new linkedList_1.LinkedList();
|
||
_defaultConfig.unshift({
|
||
maxLen: 1000,
|
||
windowSize: 15,
|
||
timeBudget: 150
|
||
});
|
||
function getWordAtText(column, wordDefinition, text, textOffset, config) {
|
||
// Ensure the regex has the 'g' flag, otherwise this will loop forever
|
||
wordDefinition = ensureValidWordDefinition(wordDefinition);
|
||
if (!config) {
|
||
config = iterator_1.Iterable.first(_defaultConfig);
|
||
}
|
||
if (text.length > config.maxLen) {
|
||
// don't throw strings that long at the regexp
|
||
// but use a sub-string in which a word must occur
|
||
let start = column - config.maxLen / 2;
|
||
if (start < 0) {
|
||
start = 0;
|
||
}
|
||
else {
|
||
textOffset += start;
|
||
}
|
||
text = text.substring(start, column + config.maxLen / 2);
|
||
return getWordAtText(column, wordDefinition, text, textOffset, config);
|
||
}
|
||
const t1 = Date.now();
|
||
const pos = column - 1 - textOffset;
|
||
let prevRegexIndex = -1;
|
||
let match = null;
|
||
for (let i = 1;; i++) {
|
||
// check time budget
|
||
if (Date.now() - t1 >= config.timeBudget) {
|
||
break;
|
||
}
|
||
// reset the index at which the regexp should start matching, also know where it
|
||
// should stop so that subsequent search don't repeat previous searches
|
||
const regexIndex = pos - config.windowSize * i;
|
||
wordDefinition.lastIndex = Math.max(0, regexIndex);
|
||
const thisMatch = _findRegexMatchEnclosingPosition(wordDefinition, text, pos, prevRegexIndex);
|
||
if (!thisMatch && match) {
|
||
// stop: we have something
|
||
break;
|
||
}
|
||
match = thisMatch;
|
||
// stop: searched at start
|
||
if (regexIndex <= 0) {
|
||
break;
|
||
}
|
||
prevRegexIndex = regexIndex;
|
||
}
|
||
if (match) {
|
||
const result = {
|
||
word: match[0],
|
||
startColumn: textOffset + 1 + match.index,
|
||
endColumn: textOffset + 1 + match.index + match[0].length
|
||
};
|
||
wordDefinition.lastIndex = 0;
|
||
return result;
|
||
}
|
||
return null;
|
||
}
|
||
function _findRegexMatchEnclosingPosition(wordDefinition, text, pos, stopPos) {
|
||
let match;
|
||
while (match = wordDefinition.exec(text)) {
|
||
const matchIndex = match.index || 0;
|
||
if (matchIndex <= pos && wordDefinition.lastIndex >= pos) {
|
||
return match;
|
||
}
|
||
else if (stopPos > 0 && matchIndex > stopPos) {
|
||
return null;
|
||
}
|
||
}
|
||
return null;
|
||
}
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[10/*vs/editor/common/diff/defaultLinesDiffComputer/algorithms/diffAlgorithm*/], __M([0/*require*/,1/*exports*/,7/*vs/base/common/arrays*/,3/*vs/base/common/errors*/,5/*vs/editor/common/core/offsetRange*/]), function (require, exports, arrays_1, errors_1, offsetRange_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.DateTimeout = exports.InfiniteTimeout = exports.OffsetPair = exports.SequenceDiff = exports.DiffAlgorithmResult = void 0;
|
||
class DiffAlgorithmResult {
|
||
static trivial(seq1, seq2) {
|
||
return new DiffAlgorithmResult([new SequenceDiff(offsetRange_1.OffsetRange.ofLength(seq1.length), offsetRange_1.OffsetRange.ofLength(seq2.length))], false);
|
||
}
|
||
static trivialTimedOut(seq1, seq2) {
|
||
return new DiffAlgorithmResult([new SequenceDiff(offsetRange_1.OffsetRange.ofLength(seq1.length), offsetRange_1.OffsetRange.ofLength(seq2.length))], true);
|
||
}
|
||
constructor(diffs,
|
||
/**
|
||
* Indicates if the time out was reached.
|
||
* In that case, the diffs might be an approximation and the user should be asked to rerun the diff with more time.
|
||
*/
|
||
hitTimeout) {
|
||
this.diffs = diffs;
|
||
this.hitTimeout = hitTimeout;
|
||
}
|
||
}
|
||
exports.DiffAlgorithmResult = DiffAlgorithmResult;
|
||
class SequenceDiff {
|
||
static invert(sequenceDiffs, doc1Length) {
|
||
const result = [];
|
||
(0, arrays_1.forEachAdjacent)(sequenceDiffs, (a, b) => {
|
||
result.push(SequenceDiff.fromOffsetPairs(a ? a.getEndExclusives() : OffsetPair.zero, b ? b.getStarts() : new OffsetPair(doc1Length, (a ? a.seq2Range.endExclusive - a.seq1Range.endExclusive : 0) + doc1Length)));
|
||
});
|
||
return result;
|
||
}
|
||
static fromOffsetPairs(start, endExclusive) {
|
||
return new SequenceDiff(new offsetRange_1.OffsetRange(start.offset1, endExclusive.offset1), new offsetRange_1.OffsetRange(start.offset2, endExclusive.offset2));
|
||
}
|
||
static assertSorted(sequenceDiffs) {
|
||
let last = undefined;
|
||
for (const cur of sequenceDiffs) {
|
||
if (last) {
|
||
if (!(last.seq1Range.endExclusive <= cur.seq1Range.start && last.seq2Range.endExclusive <= cur.seq2Range.start)) {
|
||
throw new errors_1.BugIndicatingError('Sequence diffs must be sorted');
|
||
}
|
||
}
|
||
last = cur;
|
||
}
|
||
}
|
||
constructor(seq1Range, seq2Range) {
|
||
this.seq1Range = seq1Range;
|
||
this.seq2Range = seq2Range;
|
||
}
|
||
swap() {
|
||
return new SequenceDiff(this.seq2Range, this.seq1Range);
|
||
}
|
||
toString() {
|
||
return `${this.seq1Range} <-> ${this.seq2Range}`;
|
||
}
|
||
join(other) {
|
||
return new SequenceDiff(this.seq1Range.join(other.seq1Range), this.seq2Range.join(other.seq2Range));
|
||
}
|
||
delta(offset) {
|
||
if (offset === 0) {
|
||
return this;
|
||
}
|
||
return new SequenceDiff(this.seq1Range.delta(offset), this.seq2Range.delta(offset));
|
||
}
|
||
deltaStart(offset) {
|
||
if (offset === 0) {
|
||
return this;
|
||
}
|
||
return new SequenceDiff(this.seq1Range.deltaStart(offset), this.seq2Range.deltaStart(offset));
|
||
}
|
||
deltaEnd(offset) {
|
||
if (offset === 0) {
|
||
return this;
|
||
}
|
||
return new SequenceDiff(this.seq1Range.deltaEnd(offset), this.seq2Range.deltaEnd(offset));
|
||
}
|
||
intersect(other) {
|
||
const i1 = this.seq1Range.intersect(other.seq1Range);
|
||
const i2 = this.seq2Range.intersect(other.seq2Range);
|
||
if (!i1 || !i2) {
|
||
return undefined;
|
||
}
|
||
return new SequenceDiff(i1, i2);
|
||
}
|
||
getStarts() {
|
||
return new OffsetPair(this.seq1Range.start, this.seq2Range.start);
|
||
}
|
||
getEndExclusives() {
|
||
return new OffsetPair(this.seq1Range.endExclusive, this.seq2Range.endExclusive);
|
||
}
|
||
}
|
||
exports.SequenceDiff = SequenceDiff;
|
||
class OffsetPair {
|
||
static { this.zero = new OffsetPair(0, 0); }
|
||
static { this.max = new OffsetPair(Number.MAX_SAFE_INTEGER, Number.MAX_SAFE_INTEGER); }
|
||
constructor(offset1, offset2) {
|
||
this.offset1 = offset1;
|
||
this.offset2 = offset2;
|
||
}
|
||
toString() {
|
||
return `${this.offset1} <-> ${this.offset2}`;
|
||
}
|
||
delta(offset) {
|
||
if (offset === 0) {
|
||
return this;
|
||
}
|
||
return new OffsetPair(this.offset1 + offset, this.offset2 + offset);
|
||
}
|
||
equals(other) {
|
||
return this.offset1 === other.offset1 && this.offset2 === other.offset2;
|
||
}
|
||
}
|
||
exports.OffsetPair = OffsetPair;
|
||
class InfiniteTimeout {
|
||
static { this.instance = new InfiniteTimeout(); }
|
||
isValid() {
|
||
return true;
|
||
}
|
||
}
|
||
exports.InfiniteTimeout = InfiniteTimeout;
|
||
class DateTimeout {
|
||
constructor(timeout) {
|
||
this.timeout = timeout;
|
||
this.startTime = Date.now();
|
||
this.valid = true;
|
||
if (timeout <= 0) {
|
||
throw new errors_1.BugIndicatingError('timeout must be positive');
|
||
}
|
||
}
|
||
// Recommendation: Set a log-point `{this.disable()}` in the body
|
||
isValid() {
|
||
const valid = Date.now() - this.startTime < this.timeout;
|
||
if (!valid && this.valid) {
|
||
this.valid = false; // timeout reached
|
||
// eslint-disable-next-line no-debugger
|
||
debugger; // WARNING: Most likely debugging caused the timeout. Call `this.disable()` to continue without timing out.
|
||
}
|
||
return this.valid;
|
||
}
|
||
}
|
||
exports.DateTimeout = DateTimeout;
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[32/*vs/editor/common/diff/defaultLinesDiffComputer/algorithms/myersDiffAlgorithm*/], __M([0/*require*/,1/*exports*/,5/*vs/editor/common/core/offsetRange*/,10/*vs/editor/common/diff/defaultLinesDiffComputer/algorithms/diffAlgorithm*/]), function (require, exports, offsetRange_1, diffAlgorithm_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.MyersDiffAlgorithm = void 0;
|
||
/**
|
||
* An O(ND) diff algorithm that has a quadratic space worst-case complexity.
|
||
*/
|
||
class MyersDiffAlgorithm {
|
||
compute(seq1, seq2, timeout = diffAlgorithm_1.InfiniteTimeout.instance) {
|
||
// These are common special cases.
|
||
// The early return improves performance dramatically.
|
||
if (seq1.length === 0 || seq2.length === 0) {
|
||
return diffAlgorithm_1.DiffAlgorithmResult.trivial(seq1, seq2);
|
||
}
|
||
const seqX = seq1; // Text on the x axis
|
||
const seqY = seq2; // Text on the y axis
|
||
function getXAfterSnake(x, y) {
|
||
while (x < seqX.length && y < seqY.length && seqX.getElement(x) === seqY.getElement(y)) {
|
||
x++;
|
||
y++;
|
||
}
|
||
return x;
|
||
}
|
||
let d = 0;
|
||
// V[k]: X value of longest d-line that ends in diagonal k.
|
||
// d-line: path from (0,0) to (x,y) that uses exactly d non-diagonals.
|
||
// diagonal k: Set of points (x,y) with x-y = k.
|
||
// k=1 -> (1,0),(2,1)
|
||
const V = new FastInt32Array();
|
||
V.set(0, getXAfterSnake(0, 0));
|
||
const paths = new FastArrayNegativeIndices();
|
||
paths.set(0, V.get(0) === 0 ? null : new SnakePath(null, 0, 0, V.get(0)));
|
||
let k = 0;
|
||
loop: while (true) {
|
||
d++;
|
||
if (!timeout.isValid()) {
|
||
return diffAlgorithm_1.DiffAlgorithmResult.trivialTimedOut(seqX, seqY);
|
||
}
|
||
// The paper has `for (k = -d; k <= d; k += 2)`, but we can ignore diagonals that cannot influence the result.
|
||
const lowerBound = -Math.min(d, seqY.length + (d % 2));
|
||
const upperBound = Math.min(d, seqX.length + (d % 2));
|
||
for (k = lowerBound; k <= upperBound; k += 2) {
|
||
let step = 0;
|
||
// We can use the X values of (d-1)-lines to compute X value of the longest d-lines.
|
||
const maxXofDLineTop = k === upperBound ? -1 : V.get(k + 1); // We take a vertical non-diagonal (add a symbol in seqX)
|
||
const maxXofDLineLeft = k === lowerBound ? -1 : V.get(k - 1) + 1; // We take a horizontal non-diagonal (+1 x) (delete a symbol in seqX)
|
||
step++;
|
||
const x = Math.min(Math.max(maxXofDLineTop, maxXofDLineLeft), seqX.length);
|
||
const y = x - k;
|
||
step++;
|
||
if (x > seqX.length || y > seqY.length) {
|
||
// This diagonal is irrelevant for the result.
|
||
// TODO: Don't pay the cost for this in the next iteration.
|
||
continue;
|
||
}
|
||
const newMaxX = getXAfterSnake(x, y);
|
||
V.set(k, newMaxX);
|
||
const lastPath = x === maxXofDLineTop ? paths.get(k + 1) : paths.get(k - 1);
|
||
paths.set(k, newMaxX !== x ? new SnakePath(lastPath, x, y, newMaxX - x) : lastPath);
|
||
if (V.get(k) === seqX.length && V.get(k) - k === seqY.length) {
|
||
break loop;
|
||
}
|
||
}
|
||
}
|
||
let path = paths.get(k);
|
||
const result = [];
|
||
let lastAligningPosS1 = seqX.length;
|
||
let lastAligningPosS2 = seqY.length;
|
||
while (true) {
|
||
const endX = path ? path.x + path.length : 0;
|
||
const endY = path ? path.y + path.length : 0;
|
||
if (endX !== lastAligningPosS1 || endY !== lastAligningPosS2) {
|
||
result.push(new diffAlgorithm_1.SequenceDiff(new offsetRange_1.OffsetRange(endX, lastAligningPosS1), new offsetRange_1.OffsetRange(endY, lastAligningPosS2)));
|
||
}
|
||
if (!path) {
|
||
break;
|
||
}
|
||
lastAligningPosS1 = path.x;
|
||
lastAligningPosS2 = path.y;
|
||
path = path.prev;
|
||
}
|
||
result.reverse();
|
||
return new diffAlgorithm_1.DiffAlgorithmResult(result, false);
|
||
}
|
||
}
|
||
exports.MyersDiffAlgorithm = MyersDiffAlgorithm;
|
||
class SnakePath {
|
||
constructor(prev, x, y, length) {
|
||
this.prev = prev;
|
||
this.x = x;
|
||
this.y = y;
|
||
this.length = length;
|
||
}
|
||
}
|
||
/**
|
||
* An array that supports fast negative indices.
|
||
*/
|
||
class FastInt32Array {
|
||
constructor() {
|
||
this.positiveArr = new Int32Array(10);
|
||
this.negativeArr = new Int32Array(10);
|
||
}
|
||
get(idx) {
|
||
if (idx < 0) {
|
||
idx = -idx - 1;
|
||
return this.negativeArr[idx];
|
||
}
|
||
else {
|
||
return this.positiveArr[idx];
|
||
}
|
||
}
|
||
set(idx, value) {
|
||
if (idx < 0) {
|
||
idx = -idx - 1;
|
||
if (idx >= this.negativeArr.length) {
|
||
const arr = this.negativeArr;
|
||
this.negativeArr = new Int32Array(arr.length * 2);
|
||
this.negativeArr.set(arr);
|
||
}
|
||
this.negativeArr[idx] = value;
|
||
}
|
||
else {
|
||
if (idx >= this.positiveArr.length) {
|
||
const arr = this.positiveArr;
|
||
this.positiveArr = new Int32Array(arr.length * 2);
|
||
this.positiveArr.set(arr);
|
||
}
|
||
this.positiveArr[idx] = value;
|
||
}
|
||
}
|
||
}
|
||
/**
|
||
* An array that supports fast negative indices.
|
||
*/
|
||
class FastArrayNegativeIndices {
|
||
constructor() {
|
||
this.positiveArr = [];
|
||
this.negativeArr = [];
|
||
}
|
||
get(idx) {
|
||
if (idx < 0) {
|
||
idx = -idx - 1;
|
||
return this.negativeArr[idx];
|
||
}
|
||
else {
|
||
return this.positiveArr[idx];
|
||
}
|
||
}
|
||
set(idx, value) {
|
||
if (idx < 0) {
|
||
idx = -idx - 1;
|
||
this.negativeArr[idx] = value;
|
||
}
|
||
else {
|
||
this.positiveArr[idx] = value;
|
||
}
|
||
}
|
||
}
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[52/*vs/editor/common/diff/defaultLinesDiffComputer/heuristicSequenceOptimizations*/], __M([0/*require*/,1/*exports*/,7/*vs/base/common/arrays*/,5/*vs/editor/common/core/offsetRange*/,10/*vs/editor/common/diff/defaultLinesDiffComputer/algorithms/diffAlgorithm*/]), function (require, exports, arrays_1, offsetRange_1, diffAlgorithm_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.optimizeSequenceDiffs = optimizeSequenceDiffs;
|
||
exports.removeShortMatches = removeShortMatches;
|
||
exports.extendDiffsToEntireWordIfAppropriate = extendDiffsToEntireWordIfAppropriate;
|
||
exports.removeVeryShortMatchingLinesBetweenDiffs = removeVeryShortMatchingLinesBetweenDiffs;
|
||
exports.removeVeryShortMatchingTextBetweenLongDiffs = removeVeryShortMatchingTextBetweenLongDiffs;
|
||
function optimizeSequenceDiffs(sequence1, sequence2, sequenceDiffs) {
|
||
let result = sequenceDiffs;
|
||
result = joinSequenceDiffsByShifting(sequence1, sequence2, result);
|
||
// Sometimes, calling this function twice improves the result.
|
||
// Uncomment the second invocation and run the tests to see the difference.
|
||
result = joinSequenceDiffsByShifting(sequence1, sequence2, result);
|
||
result = shiftSequenceDiffs(sequence1, sequence2, result);
|
||
return result;
|
||
}
|
||
/**
|
||
* This function fixes issues like this:
|
||
* ```
|
||
* import { Baz, Bar } from "foo";
|
||
* ```
|
||
* <->
|
||
* ```
|
||
* import { Baz, Bar, Foo } from "foo";
|
||
* ```
|
||
* Computed diff: [ {Add "," after Bar}, {Add "Foo " after space} }
|
||
* Improved diff: [{Add ", Foo" after Bar}]
|
||
*/
|
||
function joinSequenceDiffsByShifting(sequence1, sequence2, sequenceDiffs) {
|
||
if (sequenceDiffs.length === 0) {
|
||
return sequenceDiffs;
|
||
}
|
||
const result = [];
|
||
result.push(sequenceDiffs[0]);
|
||
// First move them all to the left as much as possible and join them if possible
|
||
for (let i = 1; i < sequenceDiffs.length; i++) {
|
||
const prevResult = result[result.length - 1];
|
||
let cur = sequenceDiffs[i];
|
||
if (cur.seq1Range.isEmpty || cur.seq2Range.isEmpty) {
|
||
const length = cur.seq1Range.start - prevResult.seq1Range.endExclusive;
|
||
let d;
|
||
for (d = 1; d <= length; d++) {
|
||
if (sequence1.getElement(cur.seq1Range.start - d) !== sequence1.getElement(cur.seq1Range.endExclusive - d) ||
|
||
sequence2.getElement(cur.seq2Range.start - d) !== sequence2.getElement(cur.seq2Range.endExclusive - d)) {
|
||
break;
|
||
}
|
||
}
|
||
d--;
|
||
if (d === length) {
|
||
// Merge previous and current diff
|
||
result[result.length - 1] = new diffAlgorithm_1.SequenceDiff(new offsetRange_1.OffsetRange(prevResult.seq1Range.start, cur.seq1Range.endExclusive - length), new offsetRange_1.OffsetRange(prevResult.seq2Range.start, cur.seq2Range.endExclusive - length));
|
||
continue;
|
||
}
|
||
cur = cur.delta(-d);
|
||
}
|
||
result.push(cur);
|
||
}
|
||
const result2 = [];
|
||
// Then move them all to the right and join them again if possible
|
||
for (let i = 0; i < result.length - 1; i++) {
|
||
const nextResult = result[i + 1];
|
||
let cur = result[i];
|
||
if (cur.seq1Range.isEmpty || cur.seq2Range.isEmpty) {
|
||
const length = nextResult.seq1Range.start - cur.seq1Range.endExclusive;
|
||
let d;
|
||
for (d = 0; d < length; d++) {
|
||
if (!sequence1.isStronglyEqual(cur.seq1Range.start + d, cur.seq1Range.endExclusive + d) ||
|
||
!sequence2.isStronglyEqual(cur.seq2Range.start + d, cur.seq2Range.endExclusive + d)) {
|
||
break;
|
||
}
|
||
}
|
||
if (d === length) {
|
||
// Merge previous and current diff, write to result!
|
||
result[i + 1] = new diffAlgorithm_1.SequenceDiff(new offsetRange_1.OffsetRange(cur.seq1Range.start + length, nextResult.seq1Range.endExclusive), new offsetRange_1.OffsetRange(cur.seq2Range.start + length, nextResult.seq2Range.endExclusive));
|
||
continue;
|
||
}
|
||
if (d > 0) {
|
||
cur = cur.delta(d);
|
||
}
|
||
}
|
||
result2.push(cur);
|
||
}
|
||
if (result.length > 0) {
|
||
result2.push(result[result.length - 1]);
|
||
}
|
||
return result2;
|
||
}
|
||
// align character level diffs at whitespace characters
|
||
// import { IBar } from "foo";
|
||
// import { I[Arr, I]Bar } from "foo";
|
||
// ->
|
||
// import { [IArr, ]IBar } from "foo";
|
||
// import { ITransaction, observableValue, transaction } from 'vs/base/common/observable';
|
||
// import { ITransaction, observable[FromEvent, observable]Value, transaction } from 'vs/base/common/observable';
|
||
// ->
|
||
// import { ITransaction, [observableFromEvent, ]observableValue, transaction } from 'vs/base/common/observable';
|
||
// collectBrackets(level + 1, levelPerBracketType);
|
||
// collectBrackets(level + 1, levelPerBracket[ + 1, levelPerBracket]Type);
|
||
// ->
|
||
// collectBrackets(level + 1, [levelPerBracket + 1, ]levelPerBracketType);
|
||
function shiftSequenceDiffs(sequence1, sequence2, sequenceDiffs) {
|
||
if (!sequence1.getBoundaryScore || !sequence2.getBoundaryScore) {
|
||
return sequenceDiffs;
|
||
}
|
||
for (let i = 0; i < sequenceDiffs.length; i++) {
|
||
const prevDiff = (i > 0 ? sequenceDiffs[i - 1] : undefined);
|
||
const diff = sequenceDiffs[i];
|
||
const nextDiff = (i + 1 < sequenceDiffs.length ? sequenceDiffs[i + 1] : undefined);
|
||
const seq1ValidRange = new offsetRange_1.OffsetRange(prevDiff ? prevDiff.seq1Range.endExclusive + 1 : 0, nextDiff ? nextDiff.seq1Range.start - 1 : sequence1.length);
|
||
const seq2ValidRange = new offsetRange_1.OffsetRange(prevDiff ? prevDiff.seq2Range.endExclusive + 1 : 0, nextDiff ? nextDiff.seq2Range.start - 1 : sequence2.length);
|
||
if (diff.seq1Range.isEmpty) {
|
||
sequenceDiffs[i] = shiftDiffToBetterPosition(diff, sequence1, sequence2, seq1ValidRange, seq2ValidRange);
|
||
}
|
||
else if (diff.seq2Range.isEmpty) {
|
||
sequenceDiffs[i] = shiftDiffToBetterPosition(diff.swap(), sequence2, sequence1, seq2ValidRange, seq1ValidRange).swap();
|
||
}
|
||
}
|
||
return sequenceDiffs;
|
||
}
|
||
function shiftDiffToBetterPosition(diff, sequence1, sequence2, seq1ValidRange, seq2ValidRange) {
|
||
const maxShiftLimit = 100; // To prevent performance issues
|
||
// don't touch previous or next!
|
||
let deltaBefore = 1;
|
||
while (diff.seq1Range.start - deltaBefore >= seq1ValidRange.start &&
|
||
diff.seq2Range.start - deltaBefore >= seq2ValidRange.start &&
|
||
sequence2.isStronglyEqual(diff.seq2Range.start - deltaBefore, diff.seq2Range.endExclusive - deltaBefore) && deltaBefore < maxShiftLimit) {
|
||
deltaBefore++;
|
||
}
|
||
deltaBefore--;
|
||
let deltaAfter = 0;
|
||
while (diff.seq1Range.start + deltaAfter < seq1ValidRange.endExclusive &&
|
||
diff.seq2Range.endExclusive + deltaAfter < seq2ValidRange.endExclusive &&
|
||
sequence2.isStronglyEqual(diff.seq2Range.start + deltaAfter, diff.seq2Range.endExclusive + deltaAfter) && deltaAfter < maxShiftLimit) {
|
||
deltaAfter++;
|
||
}
|
||
if (deltaBefore === 0 && deltaAfter === 0) {
|
||
return diff;
|
||
}
|
||
// Visualize `[sequence1.text, diff.seq1Range.start + deltaAfter]`
|
||
// and `[sequence2.text, diff.seq2Range.start + deltaAfter, diff.seq2Range.endExclusive + deltaAfter]`
|
||
let bestDelta = 0;
|
||
let bestScore = -1;
|
||
// find best scored delta
|
||
for (let delta = -deltaBefore; delta <= deltaAfter; delta++) {
|
||
const seq2OffsetStart = diff.seq2Range.start + delta;
|
||
const seq2OffsetEndExclusive = diff.seq2Range.endExclusive + delta;
|
||
const seq1Offset = diff.seq1Range.start + delta;
|
||
const score = sequence1.getBoundaryScore(seq1Offset) + sequence2.getBoundaryScore(seq2OffsetStart) + sequence2.getBoundaryScore(seq2OffsetEndExclusive);
|
||
if (score > bestScore) {
|
||
bestScore = score;
|
||
bestDelta = delta;
|
||
}
|
||
}
|
||
return diff.delta(bestDelta);
|
||
}
|
||
function removeShortMatches(sequence1, sequence2, sequenceDiffs) {
|
||
const result = [];
|
||
for (const s of sequenceDiffs) {
|
||
const last = result[result.length - 1];
|
||
if (!last) {
|
||
result.push(s);
|
||
continue;
|
||
}
|
||
if (s.seq1Range.start - last.seq1Range.endExclusive <= 2 || s.seq2Range.start - last.seq2Range.endExclusive <= 2) {
|
||
result[result.length - 1] = new diffAlgorithm_1.SequenceDiff(last.seq1Range.join(s.seq1Range), last.seq2Range.join(s.seq2Range));
|
||
}
|
||
else {
|
||
result.push(s);
|
||
}
|
||
}
|
||
return result;
|
||
}
|
||
function extendDiffsToEntireWordIfAppropriate(sequence1, sequence2, sequenceDiffs) {
|
||
const equalMappings = diffAlgorithm_1.SequenceDiff.invert(sequenceDiffs, sequence1.length);
|
||
const additional = [];
|
||
let lastPoint = new diffAlgorithm_1.OffsetPair(0, 0);
|
||
function scanWord(pair, equalMapping) {
|
||
if (pair.offset1 < lastPoint.offset1 || pair.offset2 < lastPoint.offset2) {
|
||
return;
|
||
}
|
||
const w1 = sequence1.findWordContaining(pair.offset1);
|
||
const w2 = sequence2.findWordContaining(pair.offset2);
|
||
if (!w1 || !w2) {
|
||
return;
|
||
}
|
||
let w = new diffAlgorithm_1.SequenceDiff(w1, w2);
|
||
const equalPart = w.intersect(equalMapping);
|
||
let equalChars1 = equalPart.seq1Range.length;
|
||
let equalChars2 = equalPart.seq2Range.length;
|
||
// The words do not touch previous equals mappings, as we would have processed them already.
|
||
// But they might touch the next ones.
|
||
while (equalMappings.length > 0) {
|
||
const next = equalMappings[0];
|
||
const intersects = next.seq1Range.intersects(w.seq1Range) || next.seq2Range.intersects(w.seq2Range);
|
||
if (!intersects) {
|
||
break;
|
||
}
|
||
const v1 = sequence1.findWordContaining(next.seq1Range.start);
|
||
const v2 = sequence2.findWordContaining(next.seq2Range.start);
|
||
// Because there is an intersection, we know that the words are not empty.
|
||
const v = new diffAlgorithm_1.SequenceDiff(v1, v2);
|
||
const equalPart = v.intersect(next);
|
||
equalChars1 += equalPart.seq1Range.length;
|
||
equalChars2 += equalPart.seq2Range.length;
|
||
w = w.join(v);
|
||
if (w.seq1Range.endExclusive >= next.seq1Range.endExclusive) {
|
||
// The word extends beyond the next equal mapping.
|
||
equalMappings.shift();
|
||
}
|
||
else {
|
||
break;
|
||
}
|
||
}
|
||
if (equalChars1 + equalChars2 < (w.seq1Range.length + w.seq2Range.length) * 2 / 3) {
|
||
additional.push(w);
|
||
}
|
||
lastPoint = w.getEndExclusives();
|
||
}
|
||
while (equalMappings.length > 0) {
|
||
const next = equalMappings.shift();
|
||
if (next.seq1Range.isEmpty) {
|
||
continue;
|
||
}
|
||
scanWord(next.getStarts(), next);
|
||
// The equal parts are not empty, so -1 gives us a character that is equal in both parts.
|
||
scanWord(next.getEndExclusives().delta(-1), next);
|
||
}
|
||
const merged = mergeSequenceDiffs(sequenceDiffs, additional);
|
||
return merged;
|
||
}
|
||
function mergeSequenceDiffs(sequenceDiffs1, sequenceDiffs2) {
|
||
const result = [];
|
||
while (sequenceDiffs1.length > 0 || sequenceDiffs2.length > 0) {
|
||
const sd1 = sequenceDiffs1[0];
|
||
const sd2 = sequenceDiffs2[0];
|
||
let next;
|
||
if (sd1 && (!sd2 || sd1.seq1Range.start < sd2.seq1Range.start)) {
|
||
next = sequenceDiffs1.shift();
|
||
}
|
||
else {
|
||
next = sequenceDiffs2.shift();
|
||
}
|
||
if (result.length > 0 && result[result.length - 1].seq1Range.endExclusive >= next.seq1Range.start) {
|
||
result[result.length - 1] = result[result.length - 1].join(next);
|
||
}
|
||
else {
|
||
result.push(next);
|
||
}
|
||
}
|
||
return result;
|
||
}
|
||
function removeVeryShortMatchingLinesBetweenDiffs(sequence1, _sequence2, sequenceDiffs) {
|
||
let diffs = sequenceDiffs;
|
||
if (diffs.length === 0) {
|
||
return diffs;
|
||
}
|
||
let counter = 0;
|
||
let shouldRepeat;
|
||
do {
|
||
shouldRepeat = false;
|
||
const result = [
|
||
diffs[0]
|
||
];
|
||
for (let i = 1; i < diffs.length; i++) {
|
||
const cur = diffs[i];
|
||
const lastResult = result[result.length - 1];
|
||
function shouldJoinDiffs(before, after) {
|
||
const unchangedRange = new offsetRange_1.OffsetRange(lastResult.seq1Range.endExclusive, cur.seq1Range.start);
|
||
const unchangedText = sequence1.getText(unchangedRange);
|
||
const unchangedTextWithoutWs = unchangedText.replace(/\s/g, '');
|
||
if (unchangedTextWithoutWs.length <= 4
|
||
&& (before.seq1Range.length + before.seq2Range.length > 5 || after.seq1Range.length + after.seq2Range.length > 5)) {
|
||
return true;
|
||
}
|
||
return false;
|
||
}
|
||
const shouldJoin = shouldJoinDiffs(lastResult, cur);
|
||
if (shouldJoin) {
|
||
shouldRepeat = true;
|
||
result[result.length - 1] = result[result.length - 1].join(cur);
|
||
}
|
||
else {
|
||
result.push(cur);
|
||
}
|
||
}
|
||
diffs = result;
|
||
} while (counter++ < 10 && shouldRepeat);
|
||
return diffs;
|
||
}
|
||
function removeVeryShortMatchingTextBetweenLongDiffs(sequence1, sequence2, sequenceDiffs) {
|
||
let diffs = sequenceDiffs;
|
||
if (diffs.length === 0) {
|
||
return diffs;
|
||
}
|
||
let counter = 0;
|
||
let shouldRepeat;
|
||
do {
|
||
shouldRepeat = false;
|
||
const result = [
|
||
diffs[0]
|
||
];
|
||
for (let i = 1; i < diffs.length; i++) {
|
||
const cur = diffs[i];
|
||
const lastResult = result[result.length - 1];
|
||
function shouldJoinDiffs(before, after) {
|
||
const unchangedRange = new offsetRange_1.OffsetRange(lastResult.seq1Range.endExclusive, cur.seq1Range.start);
|
||
const unchangedLineCount = sequence1.countLinesIn(unchangedRange);
|
||
if (unchangedLineCount > 5 || unchangedRange.length > 500) {
|
||
return false;
|
||
}
|
||
const unchangedText = sequence1.getText(unchangedRange).trim();
|
||
if (unchangedText.length > 20 || unchangedText.split(/\r\n|\r|\n/).length > 1) {
|
||
return false;
|
||
}
|
||
const beforeLineCount1 = sequence1.countLinesIn(before.seq1Range);
|
||
const beforeSeq1Length = before.seq1Range.length;
|
||
const beforeLineCount2 = sequence2.countLinesIn(before.seq2Range);
|
||
const beforeSeq2Length = before.seq2Range.length;
|
||
const afterLineCount1 = sequence1.countLinesIn(after.seq1Range);
|
||
const afterSeq1Length = after.seq1Range.length;
|
||
const afterLineCount2 = sequence2.countLinesIn(after.seq2Range);
|
||
const afterSeq2Length = after.seq2Range.length;
|
||
// TODO: Maybe a neural net can be used to derive the result from these numbers
|
||
const max = 2 * 40 + 50;
|
||
function cap(v) {
|
||
return Math.min(v, max);
|
||
}
|
||
if (Math.pow(Math.pow(cap(beforeLineCount1 * 40 + beforeSeq1Length), 1.5) + Math.pow(cap(beforeLineCount2 * 40 + beforeSeq2Length), 1.5), 1.5)
|
||
+ Math.pow(Math.pow(cap(afterLineCount1 * 40 + afterSeq1Length), 1.5) + Math.pow(cap(afterLineCount2 * 40 + afterSeq2Length), 1.5), 1.5) > ((max ** 1.5) ** 1.5) * 1.3) {
|
||
return true;
|
||
}
|
||
return false;
|
||
}
|
||
const shouldJoin = shouldJoinDiffs(lastResult, cur);
|
||
if (shouldJoin) {
|
||
shouldRepeat = true;
|
||
result[result.length - 1] = result[result.length - 1].join(cur);
|
||
}
|
||
else {
|
||
result.push(cur);
|
||
}
|
||
}
|
||
diffs = result;
|
||
} while (counter++ < 10 && shouldRepeat);
|
||
const newDiffs = [];
|
||
// Remove short suffixes/prefixes
|
||
(0, arrays_1.forEachWithNeighbors)(diffs, (prev, cur, next) => {
|
||
let newDiff = cur;
|
||
function shouldMarkAsChanged(text) {
|
||
return text.length > 0 && text.trim().length <= 3 && cur.seq1Range.length + cur.seq2Range.length > 100;
|
||
}
|
||
const fullRange1 = sequence1.extendToFullLines(cur.seq1Range);
|
||
const prefix = sequence1.getText(new offsetRange_1.OffsetRange(fullRange1.start, cur.seq1Range.start));
|
||
if (shouldMarkAsChanged(prefix)) {
|
||
newDiff = newDiff.deltaStart(-prefix.length);
|
||
}
|
||
const suffix = sequence1.getText(new offsetRange_1.OffsetRange(cur.seq1Range.endExclusive, fullRange1.endExclusive));
|
||
if (shouldMarkAsChanged(suffix)) {
|
||
newDiff = newDiff.deltaEnd(suffix.length);
|
||
}
|
||
const availableSpace = diffAlgorithm_1.SequenceDiff.fromOffsetPairs(prev ? prev.getEndExclusives() : diffAlgorithm_1.OffsetPair.zero, next ? next.getStarts() : diffAlgorithm_1.OffsetPair.max);
|
||
const result = newDiff.intersect(availableSpace);
|
||
if (newDiffs.length > 0 && result.getStarts().equals(newDiffs[newDiffs.length - 1].getEndExclusives())) {
|
||
newDiffs[newDiffs.length - 1] = newDiffs[newDiffs.length - 1].join(result);
|
||
}
|
||
else {
|
||
newDiffs.push(result);
|
||
}
|
||
});
|
||
return newDiffs;
|
||
}
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[53/*vs/editor/common/diff/defaultLinesDiffComputer/lineSequence*/], __M([0/*require*/,1/*exports*/]), function (require, exports) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.LineSequence = void 0;
|
||
class LineSequence {
|
||
constructor(trimmedHash, lines) {
|
||
this.trimmedHash = trimmedHash;
|
||
this.lines = lines;
|
||
}
|
||
getElement(offset) {
|
||
return this.trimmedHash[offset];
|
||
}
|
||
get length() {
|
||
return this.trimmedHash.length;
|
||
}
|
||
getBoundaryScore(length) {
|
||
const indentationBefore = length === 0 ? 0 : getIndentation(this.lines[length - 1]);
|
||
const indentationAfter = length === this.lines.length ? 0 : getIndentation(this.lines[length]);
|
||
return 1000 - (indentationBefore + indentationAfter);
|
||
}
|
||
getText(range) {
|
||
return this.lines.slice(range.start, range.endExclusive).join('\n');
|
||
}
|
||
isStronglyEqual(offset1, offset2) {
|
||
return this.lines[offset1] === this.lines[offset2];
|
||
}
|
||
}
|
||
exports.LineSequence = LineSequence;
|
||
function getIndentation(str) {
|
||
let i = 0;
|
||
while (i < str.length && (str.charCodeAt(i) === 32 /* CharCode.Space */ || str.charCodeAt(i) === 9 /* CharCode.Tab */)) {
|
||
i++;
|
||
}
|
||
return i;
|
||
}
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[16/*vs/editor/common/diff/defaultLinesDiffComputer/utils*/], __M([0/*require*/,1/*exports*/]), function (require, exports) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.LineRangeFragment = exports.Array2D = void 0;
|
||
exports.isSpace = isSpace;
|
||
class Array2D {
|
||
constructor(width, height) {
|
||
this.width = width;
|
||
this.height = height;
|
||
this.array = [];
|
||
this.array = new Array(width * height);
|
||
}
|
||
get(x, y) {
|
||
return this.array[x + y * this.width];
|
||
}
|
||
set(x, y, value) {
|
||
this.array[x + y * this.width] = value;
|
||
}
|
||
}
|
||
exports.Array2D = Array2D;
|
||
function isSpace(charCode) {
|
||
return charCode === 32 /* CharCode.Space */ || charCode === 9 /* CharCode.Tab */;
|
||
}
|
||
class LineRangeFragment {
|
||
static { this.chrKeys = new Map(); }
|
||
static getKey(chr) {
|
||
let key = this.chrKeys.get(chr);
|
||
if (key === undefined) {
|
||
key = this.chrKeys.size;
|
||
this.chrKeys.set(chr, key);
|
||
}
|
||
return key;
|
||
}
|
||
constructor(range, lines, source) {
|
||
this.range = range;
|
||
this.lines = lines;
|
||
this.source = source;
|
||
this.histogram = [];
|
||
let counter = 0;
|
||
for (let i = range.startLineNumber - 1; i < range.endLineNumberExclusive - 1; i++) {
|
||
const line = lines[i];
|
||
for (let j = 0; j < line.length; j++) {
|
||
counter++;
|
||
const chr = line[j];
|
||
const key = LineRangeFragment.getKey(chr);
|
||
this.histogram[key] = (this.histogram[key] || 0) + 1;
|
||
}
|
||
counter++;
|
||
const key = LineRangeFragment.getKey('\n');
|
||
this.histogram[key] = (this.histogram[key] || 0) + 1;
|
||
}
|
||
this.totalCount = counter;
|
||
}
|
||
computeSimilarity(other) {
|
||
let sumDifferences = 0;
|
||
const maxLength = Math.max(this.histogram.length, other.histogram.length);
|
||
for (let i = 0; i < maxLength; i++) {
|
||
sumDifferences += Math.abs((this.histogram[i] ?? 0) - (other.histogram[i] ?? 0));
|
||
}
|
||
return 1 - (sumDifferences / (this.totalCount + other.totalCount));
|
||
}
|
||
}
|
||
exports.LineRangeFragment = LineRangeFragment;
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[54/*vs/editor/common/diff/defaultLinesDiffComputer/algorithms/dynamicProgrammingDiffing*/], __M([0/*require*/,1/*exports*/,5/*vs/editor/common/core/offsetRange*/,10/*vs/editor/common/diff/defaultLinesDiffComputer/algorithms/diffAlgorithm*/,16/*vs/editor/common/diff/defaultLinesDiffComputer/utils*/]), function (require, exports, offsetRange_1, diffAlgorithm_1, utils_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.DynamicProgrammingDiffing = void 0;
|
||
/**
|
||
* A O(MN) diffing algorithm that supports a score function.
|
||
* The algorithm can be improved by processing the 2d array diagonally.
|
||
*/
|
||
class DynamicProgrammingDiffing {
|
||
compute(sequence1, sequence2, timeout = diffAlgorithm_1.InfiniteTimeout.instance, equalityScore) {
|
||
if (sequence1.length === 0 || sequence2.length === 0) {
|
||
return diffAlgorithm_1.DiffAlgorithmResult.trivial(sequence1, sequence2);
|
||
}
|
||
/**
|
||
* lcsLengths.get(i, j): Length of the longest common subsequence of sequence1.substring(0, i + 1) and sequence2.substring(0, j + 1).
|
||
*/
|
||
const lcsLengths = new utils_1.Array2D(sequence1.length, sequence2.length);
|
||
const directions = new utils_1.Array2D(sequence1.length, sequence2.length);
|
||
const lengths = new utils_1.Array2D(sequence1.length, sequence2.length);
|
||
// ==== Initializing lcsLengths ====
|
||
for (let s1 = 0; s1 < sequence1.length; s1++) {
|
||
for (let s2 = 0; s2 < sequence2.length; s2++) {
|
||
if (!timeout.isValid()) {
|
||
return diffAlgorithm_1.DiffAlgorithmResult.trivialTimedOut(sequence1, sequence2);
|
||
}
|
||
const horizontalLen = s1 === 0 ? 0 : lcsLengths.get(s1 - 1, s2);
|
||
const verticalLen = s2 === 0 ? 0 : lcsLengths.get(s1, s2 - 1);
|
||
let extendedSeqScore;
|
||
if (sequence1.getElement(s1) === sequence2.getElement(s2)) {
|
||
if (s1 === 0 || s2 === 0) {
|
||
extendedSeqScore = 0;
|
||
}
|
||
else {
|
||
extendedSeqScore = lcsLengths.get(s1 - 1, s2 - 1);
|
||
}
|
||
if (s1 > 0 && s2 > 0 && directions.get(s1 - 1, s2 - 1) === 3) {
|
||
// Prefer consecutive diagonals
|
||
extendedSeqScore += lengths.get(s1 - 1, s2 - 1);
|
||
}
|
||
extendedSeqScore += (equalityScore ? equalityScore(s1, s2) : 1);
|
||
}
|
||
else {
|
||
extendedSeqScore = -1;
|
||
}
|
||
const newValue = Math.max(horizontalLen, verticalLen, extendedSeqScore);
|
||
if (newValue === extendedSeqScore) {
|
||
// Prefer diagonals
|
||
const prevLen = s1 > 0 && s2 > 0 ? lengths.get(s1 - 1, s2 - 1) : 0;
|
||
lengths.set(s1, s2, prevLen + 1);
|
||
directions.set(s1, s2, 3);
|
||
}
|
||
else if (newValue === horizontalLen) {
|
||
lengths.set(s1, s2, 0);
|
||
directions.set(s1, s2, 1);
|
||
}
|
||
else if (newValue === verticalLen) {
|
||
lengths.set(s1, s2, 0);
|
||
directions.set(s1, s2, 2);
|
||
}
|
||
lcsLengths.set(s1, s2, newValue);
|
||
}
|
||
}
|
||
// ==== Backtracking ====
|
||
const result = [];
|
||
let lastAligningPosS1 = sequence1.length;
|
||
let lastAligningPosS2 = sequence2.length;
|
||
function reportDecreasingAligningPositions(s1, s2) {
|
||
if (s1 + 1 !== lastAligningPosS1 || s2 + 1 !== lastAligningPosS2) {
|
||
result.push(new diffAlgorithm_1.SequenceDiff(new offsetRange_1.OffsetRange(s1 + 1, lastAligningPosS1), new offsetRange_1.OffsetRange(s2 + 1, lastAligningPosS2)));
|
||
}
|
||
lastAligningPosS1 = s1;
|
||
lastAligningPosS2 = s2;
|
||
}
|
||
let s1 = sequence1.length - 1;
|
||
let s2 = sequence2.length - 1;
|
||
while (s1 >= 0 && s2 >= 0) {
|
||
if (directions.get(s1, s2) === 3) {
|
||
reportDecreasingAligningPositions(s1, s2);
|
||
s1--;
|
||
s2--;
|
||
}
|
||
else {
|
||
if (directions.get(s1, s2) === 1) {
|
||
s1--;
|
||
}
|
||
else {
|
||
s2--;
|
||
}
|
||
}
|
||
}
|
||
reportDecreasingAligningPositions(-1, -1);
|
||
result.reverse();
|
||
return new diffAlgorithm_1.DiffAlgorithmResult(result, false);
|
||
}
|
||
}
|
||
exports.DynamicProgrammingDiffing = DynamicProgrammingDiffing;
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[33/*vs/editor/common/diff/defaultLinesDiffComputer/linesSliceCharSequence*/], __M([0/*require*/,1/*exports*/,15/*vs/base/common/arraysFind*/,5/*vs/editor/common/core/offsetRange*/,4/*vs/editor/common/core/position*/,2/*vs/editor/common/core/range*/,16/*vs/editor/common/diff/defaultLinesDiffComputer/utils*/]), function (require, exports, arraysFind_1, offsetRange_1, position_1, range_1, utils_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.LinesSliceCharSequence = void 0;
|
||
class LinesSliceCharSequence {
|
||
constructor(lines, range, considerWhitespaceChanges) {
|
||
this.lines = lines;
|
||
this.range = range;
|
||
this.considerWhitespaceChanges = considerWhitespaceChanges;
|
||
this.elements = [];
|
||
this.firstElementOffsetByLineIdx = [];
|
||
this.lineStartOffsets = [];
|
||
this.trimmedWsLengthsByLineIdx = [];
|
||
this.firstElementOffsetByLineIdx.push(0);
|
||
for (let lineNumber = this.range.startLineNumber; lineNumber <= this.range.endLineNumber; lineNumber++) {
|
||
let line = lines[lineNumber - 1];
|
||
let lineStartOffset = 0;
|
||
if (lineNumber === this.range.startLineNumber && this.range.startColumn > 1) {
|
||
lineStartOffset = this.range.startColumn - 1;
|
||
line = line.substring(lineStartOffset);
|
||
}
|
||
this.lineStartOffsets.push(lineStartOffset);
|
||
let trimmedWsLength = 0;
|
||
if (!considerWhitespaceChanges) {
|
||
const trimmedStartLine = line.trimStart();
|
||
trimmedWsLength = line.length - trimmedStartLine.length;
|
||
line = trimmedStartLine.trimEnd();
|
||
}
|
||
this.trimmedWsLengthsByLineIdx.push(trimmedWsLength);
|
||
const lineLength = lineNumber === this.range.endLineNumber ? Math.min(this.range.endColumn - 1 - lineStartOffset - trimmedWsLength, line.length) : line.length;
|
||
for (let i = 0; i < lineLength; i++) {
|
||
this.elements.push(line.charCodeAt(i));
|
||
}
|
||
if (lineNumber < this.range.endLineNumber) {
|
||
this.elements.push('\n'.charCodeAt(0));
|
||
this.firstElementOffsetByLineIdx.push(this.elements.length);
|
||
}
|
||
}
|
||
}
|
||
toString() {
|
||
return `Slice: "${this.text}"`;
|
||
}
|
||
get text() {
|
||
return this.getText(new offsetRange_1.OffsetRange(0, this.length));
|
||
}
|
||
getText(range) {
|
||
return this.elements.slice(range.start, range.endExclusive).map(e => String.fromCharCode(e)).join('');
|
||
}
|
||
getElement(offset) {
|
||
return this.elements[offset];
|
||
}
|
||
get length() {
|
||
return this.elements.length;
|
||
}
|
||
getBoundaryScore(length) {
|
||
// a b c , d e f
|
||
// 11 0 0 12 15 6 13 0 0 11
|
||
const prevCategory = getCategory(length > 0 ? this.elements[length - 1] : -1);
|
||
const nextCategory = getCategory(length < this.elements.length ? this.elements[length] : -1);
|
||
if (prevCategory === 7 /* CharBoundaryCategory.LineBreakCR */ && nextCategory === 8 /* CharBoundaryCategory.LineBreakLF */) {
|
||
// don't break between \r and \n
|
||
return 0;
|
||
}
|
||
if (prevCategory === 8 /* CharBoundaryCategory.LineBreakLF */) {
|
||
// prefer the linebreak before the change
|
||
return 150;
|
||
}
|
||
let score = 0;
|
||
if (prevCategory !== nextCategory) {
|
||
score += 10;
|
||
if (prevCategory === 0 /* CharBoundaryCategory.WordLower */ && nextCategory === 1 /* CharBoundaryCategory.WordUpper */) {
|
||
score += 1;
|
||
}
|
||
}
|
||
score += getCategoryBoundaryScore(prevCategory);
|
||
score += getCategoryBoundaryScore(nextCategory);
|
||
return score;
|
||
}
|
||
translateOffset(offset, preference = 'right') {
|
||
// find smallest i, so that lineBreakOffsets[i] <= offset using binary search
|
||
const i = (0, arraysFind_1.findLastIdxMonotonous)(this.firstElementOffsetByLineIdx, (value) => value <= offset);
|
||
const lineOffset = offset - this.firstElementOffsetByLineIdx[i];
|
||
return new position_1.Position(this.range.startLineNumber + i, 1 + this.lineStartOffsets[i] + lineOffset + ((lineOffset === 0 && preference === 'left') ? 0 : this.trimmedWsLengthsByLineIdx[i]));
|
||
}
|
||
translateRange(range) {
|
||
const pos1 = this.translateOffset(range.start, 'right');
|
||
const pos2 = this.translateOffset(range.endExclusive, 'left');
|
||
if (pos2.isBefore(pos1)) {
|
||
return range_1.Range.fromPositions(pos2, pos2);
|
||
}
|
||
return range_1.Range.fromPositions(pos1, pos2);
|
||
}
|
||
/**
|
||
* Finds the word that contains the character at the given offset
|
||
*/
|
||
findWordContaining(offset) {
|
||
if (offset < 0 || offset >= this.elements.length) {
|
||
return undefined;
|
||
}
|
||
if (!isWordChar(this.elements[offset])) {
|
||
return undefined;
|
||
}
|
||
// find start
|
||
let start = offset;
|
||
while (start > 0 && isWordChar(this.elements[start - 1])) {
|
||
start--;
|
||
}
|
||
// find end
|
||
let end = offset;
|
||
while (end < this.elements.length && isWordChar(this.elements[end])) {
|
||
end++;
|
||
}
|
||
return new offsetRange_1.OffsetRange(start, end);
|
||
}
|
||
countLinesIn(range) {
|
||
return this.translateOffset(range.endExclusive).lineNumber - this.translateOffset(range.start).lineNumber;
|
||
}
|
||
isStronglyEqual(offset1, offset2) {
|
||
return this.elements[offset1] === this.elements[offset2];
|
||
}
|
||
extendToFullLines(range) {
|
||
const start = (0, arraysFind_1.findLastMonotonous)(this.firstElementOffsetByLineIdx, x => x <= range.start) ?? 0;
|
||
const end = (0, arraysFind_1.findFirstMonotonous)(this.firstElementOffsetByLineIdx, x => range.endExclusive <= x) ?? this.elements.length;
|
||
return new offsetRange_1.OffsetRange(start, end);
|
||
}
|
||
}
|
||
exports.LinesSliceCharSequence = LinesSliceCharSequence;
|
||
function isWordChar(charCode) {
|
||
return charCode >= 97 /* CharCode.a */ && charCode <= 122 /* CharCode.z */
|
||
|| charCode >= 65 /* CharCode.A */ && charCode <= 90 /* CharCode.Z */
|
||
|| charCode >= 48 /* CharCode.Digit0 */ && charCode <= 57 /* CharCode.Digit9 */;
|
||
}
|
||
const score = {
|
||
[0 /* CharBoundaryCategory.WordLower */]: 0,
|
||
[1 /* CharBoundaryCategory.WordUpper */]: 0,
|
||
[2 /* CharBoundaryCategory.WordNumber */]: 0,
|
||
[3 /* CharBoundaryCategory.End */]: 10,
|
||
[4 /* CharBoundaryCategory.Other */]: 2,
|
||
[5 /* CharBoundaryCategory.Separator */]: 30,
|
||
[6 /* CharBoundaryCategory.Space */]: 3,
|
||
[7 /* CharBoundaryCategory.LineBreakCR */]: 10,
|
||
[8 /* CharBoundaryCategory.LineBreakLF */]: 10,
|
||
};
|
||
function getCategoryBoundaryScore(category) {
|
||
return score[category];
|
||
}
|
||
function getCategory(charCode) {
|
||
if (charCode === 10 /* CharCode.LineFeed */) {
|
||
return 8 /* CharBoundaryCategory.LineBreakLF */;
|
||
}
|
||
else if (charCode === 13 /* CharCode.CarriageReturn */) {
|
||
return 7 /* CharBoundaryCategory.LineBreakCR */;
|
||
}
|
||
else if ((0, utils_1.isSpace)(charCode)) {
|
||
return 6 /* CharBoundaryCategory.Space */;
|
||
}
|
||
else if (charCode >= 97 /* CharCode.a */ && charCode <= 122 /* CharCode.z */) {
|
||
return 0 /* CharBoundaryCategory.WordLower */;
|
||
}
|
||
else if (charCode >= 65 /* CharCode.A */ && charCode <= 90 /* CharCode.Z */) {
|
||
return 1 /* CharBoundaryCategory.WordUpper */;
|
||
}
|
||
else if (charCode >= 48 /* CharCode.Digit0 */ && charCode <= 57 /* CharCode.Digit9 */) {
|
||
return 2 /* CharBoundaryCategory.WordNumber */;
|
||
}
|
||
else if (charCode === -1) {
|
||
return 3 /* CharBoundaryCategory.End */;
|
||
}
|
||
else if (charCode === 44 /* CharCode.Comma */ || charCode === 59 /* CharCode.Semicolon */) {
|
||
return 5 /* CharBoundaryCategory.Separator */;
|
||
}
|
||
else {
|
||
return 4 /* CharBoundaryCategory.Other */;
|
||
}
|
||
}
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[34/*vs/editor/common/diff/linesDiffComputer*/], __M([0/*require*/,1/*exports*/]), function (require, exports) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.MovedText = exports.LinesDiff = void 0;
|
||
class LinesDiff {
|
||
constructor(changes,
|
||
/**
|
||
* Sorted by original line ranges.
|
||
* The original line ranges and the modified line ranges must be disjoint (but can be touching).
|
||
*/
|
||
moves,
|
||
/**
|
||
* Indicates if the time out was reached.
|
||
* In that case, the diffs might be an approximation and the user should be asked to rerun the diff with more time.
|
||
*/
|
||
hitTimeout) {
|
||
this.changes = changes;
|
||
this.moves = moves;
|
||
this.hitTimeout = hitTimeout;
|
||
}
|
||
}
|
||
exports.LinesDiff = LinesDiff;
|
||
class MovedText {
|
||
constructor(lineRangeMapping, changes) {
|
||
this.lineRangeMapping = lineRangeMapping;
|
||
this.changes = changes;
|
||
}
|
||
}
|
||
exports.MovedText = MovedText;
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[17/*vs/editor/common/diff/rangeMapping*/], __M([0/*require*/,1/*exports*/,3/*vs/base/common/errors*/,13/*vs/editor/common/core/lineRange*/,4/*vs/editor/common/core/position*/,2/*vs/editor/common/core/range*/,50/*vs/editor/common/core/textEdit*/]), function (require, exports, errors_1, lineRange_1, position_1, range_1, textEdit_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.RangeMapping = exports.DetailedLineRangeMapping = exports.LineRangeMapping = void 0;
|
||
/**
|
||
* Maps a line range in the original text model to a line range in the modified text model.
|
||
*/
|
||
class LineRangeMapping {
|
||
static inverse(mapping, originalLineCount, modifiedLineCount) {
|
||
const result = [];
|
||
let lastOriginalEndLineNumber = 1;
|
||
let lastModifiedEndLineNumber = 1;
|
||
for (const m of mapping) {
|
||
const r = new LineRangeMapping(new lineRange_1.LineRange(lastOriginalEndLineNumber, m.original.startLineNumber), new lineRange_1.LineRange(lastModifiedEndLineNumber, m.modified.startLineNumber));
|
||
if (!r.modified.isEmpty) {
|
||
result.push(r);
|
||
}
|
||
lastOriginalEndLineNumber = m.original.endLineNumberExclusive;
|
||
lastModifiedEndLineNumber = m.modified.endLineNumberExclusive;
|
||
}
|
||
const r = new LineRangeMapping(new lineRange_1.LineRange(lastOriginalEndLineNumber, originalLineCount + 1), new lineRange_1.LineRange(lastModifiedEndLineNumber, modifiedLineCount + 1));
|
||
if (!r.modified.isEmpty) {
|
||
result.push(r);
|
||
}
|
||
return result;
|
||
}
|
||
static clip(mapping, originalRange, modifiedRange) {
|
||
const result = [];
|
||
for (const m of mapping) {
|
||
const original = m.original.intersect(originalRange);
|
||
const modified = m.modified.intersect(modifiedRange);
|
||
if (original && !original.isEmpty && modified && !modified.isEmpty) {
|
||
result.push(new LineRangeMapping(original, modified));
|
||
}
|
||
}
|
||
return result;
|
||
}
|
||
constructor(originalRange, modifiedRange) {
|
||
this.original = originalRange;
|
||
this.modified = modifiedRange;
|
||
}
|
||
toString() {
|
||
return `{${this.original.toString()}->${this.modified.toString()}}`;
|
||
}
|
||
flip() {
|
||
return new LineRangeMapping(this.modified, this.original);
|
||
}
|
||
join(other) {
|
||
return new LineRangeMapping(this.original.join(other.original), this.modified.join(other.modified));
|
||
}
|
||
/**
|
||
* This method assumes that the LineRangeMapping describes a valid diff!
|
||
* I.e. if one range is empty, the other range cannot be the entire document.
|
||
* It avoids various problems when the line range points to non-existing line-numbers.
|
||
*/
|
||
toRangeMapping() {
|
||
const origInclusiveRange = this.original.toInclusiveRange();
|
||
const modInclusiveRange = this.modified.toInclusiveRange();
|
||
if (origInclusiveRange && modInclusiveRange) {
|
||
return new RangeMapping(origInclusiveRange, modInclusiveRange);
|
||
}
|
||
else if (this.original.startLineNumber === 1 || this.modified.startLineNumber === 1) {
|
||
if (!(this.modified.startLineNumber === 1 && this.original.startLineNumber === 1)) {
|
||
// If one line range starts at 1, the other one must start at 1 as well.
|
||
throw new errors_1.BugIndicatingError('not a valid diff');
|
||
}
|
||
// Because one range is empty and both ranges start at line 1, none of the ranges can cover all lines.
|
||
// Thus, `endLineNumberExclusive` is a valid line number.
|
||
return new RangeMapping(new range_1.Range(this.original.startLineNumber, 1, this.original.endLineNumberExclusive, 1), new range_1.Range(this.modified.startLineNumber, 1, this.modified.endLineNumberExclusive, 1));
|
||
}
|
||
else {
|
||
// We can assume here that both startLineNumbers are greater than 1.
|
||
return new RangeMapping(new range_1.Range(this.original.startLineNumber - 1, Number.MAX_SAFE_INTEGER, this.original.endLineNumberExclusive - 1, Number.MAX_SAFE_INTEGER), new range_1.Range(this.modified.startLineNumber - 1, Number.MAX_SAFE_INTEGER, this.modified.endLineNumberExclusive - 1, Number.MAX_SAFE_INTEGER));
|
||
}
|
||
}
|
||
/**
|
||
* This method assumes that the LineRangeMapping describes a valid diff!
|
||
* I.e. if one range is empty, the other range cannot be the entire document.
|
||
* It avoids various problems when the line range points to non-existing line-numbers.
|
||
*/
|
||
toRangeMapping2(original, modified) {
|
||
if (isValidLineNumber(this.original.endLineNumberExclusive, original)
|
||
&& isValidLineNumber(this.modified.endLineNumberExclusive, modified)) {
|
||
return new RangeMapping(new range_1.Range(this.original.startLineNumber, 1, this.original.endLineNumberExclusive, 1), new range_1.Range(this.modified.startLineNumber, 1, this.modified.endLineNumberExclusive, 1));
|
||
}
|
||
if (!this.original.isEmpty && !this.modified.isEmpty) {
|
||
return new RangeMapping(range_1.Range.fromPositions(new position_1.Position(this.original.startLineNumber, 1), normalizePosition(new position_1.Position(this.original.endLineNumberExclusive - 1, Number.MAX_SAFE_INTEGER), original)), range_1.Range.fromPositions(new position_1.Position(this.modified.startLineNumber, 1), normalizePosition(new position_1.Position(this.modified.endLineNumberExclusive - 1, Number.MAX_SAFE_INTEGER), modified)));
|
||
}
|
||
if (this.original.startLineNumber > 1 && this.modified.startLineNumber > 1) {
|
||
return new RangeMapping(range_1.Range.fromPositions(normalizePosition(new position_1.Position(this.original.startLineNumber - 1, Number.MAX_SAFE_INTEGER), original), normalizePosition(new position_1.Position(this.original.endLineNumberExclusive - 1, Number.MAX_SAFE_INTEGER), original)), range_1.Range.fromPositions(normalizePosition(new position_1.Position(this.modified.startLineNumber - 1, Number.MAX_SAFE_INTEGER), modified), normalizePosition(new position_1.Position(this.modified.endLineNumberExclusive - 1, Number.MAX_SAFE_INTEGER), modified)));
|
||
}
|
||
// Situation now: one range is empty and one range touches the last line and one range starts at line 1.
|
||
// I don't think this can happen.
|
||
throw new errors_1.BugIndicatingError();
|
||
}
|
||
}
|
||
exports.LineRangeMapping = LineRangeMapping;
|
||
function normalizePosition(position, content) {
|
||
if (position.lineNumber < 1) {
|
||
return new position_1.Position(1, 1);
|
||
}
|
||
if (position.lineNumber > content.length) {
|
||
return new position_1.Position(content.length, content[content.length - 1].length + 1);
|
||
}
|
||
const line = content[position.lineNumber - 1];
|
||
if (position.column > line.length + 1) {
|
||
return new position_1.Position(position.lineNumber, line.length + 1);
|
||
}
|
||
return position;
|
||
}
|
||
function isValidLineNumber(lineNumber, lines) {
|
||
return lineNumber >= 1 && lineNumber <= lines.length;
|
||
}
|
||
/**
|
||
* Maps a line range in the original text model to a line range in the modified text model.
|
||
* Also contains inner range mappings.
|
||
*/
|
||
class DetailedLineRangeMapping extends LineRangeMapping {
|
||
static fromRangeMappings(rangeMappings) {
|
||
const originalRange = lineRange_1.LineRange.join(rangeMappings.map(r => lineRange_1.LineRange.fromRangeInclusive(r.originalRange)));
|
||
const modifiedRange = lineRange_1.LineRange.join(rangeMappings.map(r => lineRange_1.LineRange.fromRangeInclusive(r.modifiedRange)));
|
||
return new DetailedLineRangeMapping(originalRange, modifiedRange, rangeMappings);
|
||
}
|
||
constructor(originalRange, modifiedRange, innerChanges) {
|
||
super(originalRange, modifiedRange);
|
||
this.innerChanges = innerChanges;
|
||
}
|
||
flip() {
|
||
return new DetailedLineRangeMapping(this.modified, this.original, this.innerChanges?.map(c => c.flip()));
|
||
}
|
||
withInnerChangesFromLineRanges() {
|
||
return new DetailedLineRangeMapping(this.original, this.modified, [this.toRangeMapping()]);
|
||
}
|
||
}
|
||
exports.DetailedLineRangeMapping = DetailedLineRangeMapping;
|
||
/**
|
||
* Maps a range in the original text model to a range in the modified text model.
|
||
*/
|
||
class RangeMapping {
|
||
static assertSorted(rangeMappings) {
|
||
for (let i = 1; i < rangeMappings.length; i++) {
|
||
const previous = rangeMappings[i - 1];
|
||
const current = rangeMappings[i];
|
||
if (!(previous.originalRange.getEndPosition().isBeforeOrEqual(current.originalRange.getStartPosition())
|
||
&& previous.modifiedRange.getEndPosition().isBeforeOrEqual(current.modifiedRange.getStartPosition()))) {
|
||
throw new errors_1.BugIndicatingError('Range mappings must be sorted');
|
||
}
|
||
}
|
||
}
|
||
constructor(originalRange, modifiedRange) {
|
||
this.originalRange = originalRange;
|
||
this.modifiedRange = modifiedRange;
|
||
}
|
||
toString() {
|
||
return `{${this.originalRange.toString()}->${this.modifiedRange.toString()}}`;
|
||
}
|
||
flip() {
|
||
return new RangeMapping(this.modifiedRange, this.originalRange);
|
||
}
|
||
/**
|
||
* Creates a single text edit that describes the change from the original to the modified text.
|
||
*/
|
||
toTextEdit(modified) {
|
||
const newText = modified.getValueOfRange(this.modifiedRange);
|
||
return new textEdit_1.SingleTextEdit(this.originalRange, newText);
|
||
}
|
||
}
|
||
exports.RangeMapping = RangeMapping;
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[55/*vs/editor/common/diff/defaultLinesDiffComputer/computeMovedLines*/], __M([0/*require*/,1/*exports*/,10/*vs/editor/common/diff/defaultLinesDiffComputer/algorithms/diffAlgorithm*/,17/*vs/editor/common/diff/rangeMapping*/,7/*vs/base/common/arrays*/,15/*vs/base/common/arraysFind*/,21/*vs/base/common/map*/,13/*vs/editor/common/core/lineRange*/,33/*vs/editor/common/diff/defaultLinesDiffComputer/linesSliceCharSequence*/,16/*vs/editor/common/diff/defaultLinesDiffComputer/utils*/,32/*vs/editor/common/diff/defaultLinesDiffComputer/algorithms/myersDiffAlgorithm*/,2/*vs/editor/common/core/range*/]), function (require, exports, diffAlgorithm_1, rangeMapping_1, arrays_1, arraysFind_1, map_1, lineRange_1, linesSliceCharSequence_1, utils_1, myersDiffAlgorithm_1, range_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.computeMovedLines = computeMovedLines;
|
||
function computeMovedLines(changes, originalLines, modifiedLines, hashedOriginalLines, hashedModifiedLines, timeout) {
|
||
let { moves, excludedChanges } = computeMovesFromSimpleDeletionsToSimpleInsertions(changes, originalLines, modifiedLines, timeout);
|
||
if (!timeout.isValid()) {
|
||
return [];
|
||
}
|
||
const filteredChanges = changes.filter(c => !excludedChanges.has(c));
|
||
const unchangedMoves = computeUnchangedMoves(filteredChanges, hashedOriginalLines, hashedModifiedLines, originalLines, modifiedLines, timeout);
|
||
(0, arrays_1.pushMany)(moves, unchangedMoves);
|
||
moves = joinCloseConsecutiveMoves(moves);
|
||
// Ignore too short moves
|
||
moves = moves.filter(current => {
|
||
const lines = current.original.toOffsetRange().slice(originalLines).map(l => l.trim());
|
||
const originalText = lines.join('\n');
|
||
return originalText.length >= 15 && countWhere(lines, l => l.length >= 2) >= 2;
|
||
});
|
||
moves = removeMovesInSameDiff(changes, moves);
|
||
return moves;
|
||
}
|
||
function countWhere(arr, predicate) {
|
||
let count = 0;
|
||
for (const t of arr) {
|
||
if (predicate(t)) {
|
||
count++;
|
||
}
|
||
}
|
||
return count;
|
||
}
|
||
function computeMovesFromSimpleDeletionsToSimpleInsertions(changes, originalLines, modifiedLines, timeout) {
|
||
const moves = [];
|
||
const deletions = changes
|
||
.filter(c => c.modified.isEmpty && c.original.length >= 3)
|
||
.map(d => new utils_1.LineRangeFragment(d.original, originalLines, d));
|
||
const insertions = new Set(changes
|
||
.filter(c => c.original.isEmpty && c.modified.length >= 3)
|
||
.map(d => new utils_1.LineRangeFragment(d.modified, modifiedLines, d)));
|
||
const excludedChanges = new Set();
|
||
for (const deletion of deletions) {
|
||
let highestSimilarity = -1;
|
||
let best;
|
||
for (const insertion of insertions) {
|
||
const similarity = deletion.computeSimilarity(insertion);
|
||
if (similarity > highestSimilarity) {
|
||
highestSimilarity = similarity;
|
||
best = insertion;
|
||
}
|
||
}
|
||
if (highestSimilarity > 0.90 && best) {
|
||
insertions.delete(best);
|
||
moves.push(new rangeMapping_1.LineRangeMapping(deletion.range, best.range));
|
||
excludedChanges.add(deletion.source);
|
||
excludedChanges.add(best.source);
|
||
}
|
||
if (!timeout.isValid()) {
|
||
return { moves, excludedChanges };
|
||
}
|
||
}
|
||
return { moves, excludedChanges };
|
||
}
|
||
function computeUnchangedMoves(changes, hashedOriginalLines, hashedModifiedLines, originalLines, modifiedLines, timeout) {
|
||
const moves = [];
|
||
const original3LineHashes = new map_1.SetMap();
|
||
for (const change of changes) {
|
||
for (let i = change.original.startLineNumber; i < change.original.endLineNumberExclusive - 2; i++) {
|
||
const key = `${hashedOriginalLines[i - 1]}:${hashedOriginalLines[i + 1 - 1]}:${hashedOriginalLines[i + 2 - 1]}`;
|
||
original3LineHashes.add(key, { range: new lineRange_1.LineRange(i, i + 3) });
|
||
}
|
||
}
|
||
const possibleMappings = [];
|
||
changes.sort((0, arrays_1.compareBy)(c => c.modified.startLineNumber, arrays_1.numberComparator));
|
||
for (const change of changes) {
|
||
let lastMappings = [];
|
||
for (let i = change.modified.startLineNumber; i < change.modified.endLineNumberExclusive - 2; i++) {
|
||
const key = `${hashedModifiedLines[i - 1]}:${hashedModifiedLines[i + 1 - 1]}:${hashedModifiedLines[i + 2 - 1]}`;
|
||
const currentModifiedRange = new lineRange_1.LineRange(i, i + 3);
|
||
const nextMappings = [];
|
||
original3LineHashes.forEach(key, ({ range }) => {
|
||
for (const lastMapping of lastMappings) {
|
||
// does this match extend some last match?
|
||
if (lastMapping.originalLineRange.endLineNumberExclusive + 1 === range.endLineNumberExclusive &&
|
||
lastMapping.modifiedLineRange.endLineNumberExclusive + 1 === currentModifiedRange.endLineNumberExclusive) {
|
||
lastMapping.originalLineRange = new lineRange_1.LineRange(lastMapping.originalLineRange.startLineNumber, range.endLineNumberExclusive);
|
||
lastMapping.modifiedLineRange = new lineRange_1.LineRange(lastMapping.modifiedLineRange.startLineNumber, currentModifiedRange.endLineNumberExclusive);
|
||
nextMappings.push(lastMapping);
|
||
return;
|
||
}
|
||
}
|
||
const mapping = {
|
||
modifiedLineRange: currentModifiedRange,
|
||
originalLineRange: range,
|
||
};
|
||
possibleMappings.push(mapping);
|
||
nextMappings.push(mapping);
|
||
});
|
||
lastMappings = nextMappings;
|
||
}
|
||
if (!timeout.isValid()) {
|
||
return [];
|
||
}
|
||
}
|
||
possibleMappings.sort((0, arrays_1.reverseOrder)((0, arrays_1.compareBy)(m => m.modifiedLineRange.length, arrays_1.numberComparator)));
|
||
const modifiedSet = new lineRange_1.LineRangeSet();
|
||
const originalSet = new lineRange_1.LineRangeSet();
|
||
for (const mapping of possibleMappings) {
|
||
const diffOrigToMod = mapping.modifiedLineRange.startLineNumber - mapping.originalLineRange.startLineNumber;
|
||
const modifiedSections = modifiedSet.subtractFrom(mapping.modifiedLineRange);
|
||
const originalTranslatedSections = originalSet.subtractFrom(mapping.originalLineRange).getWithDelta(diffOrigToMod);
|
||
const modifiedIntersectedSections = modifiedSections.getIntersection(originalTranslatedSections);
|
||
for (const s of modifiedIntersectedSections.ranges) {
|
||
if (s.length < 3) {
|
||
continue;
|
||
}
|
||
const modifiedLineRange = s;
|
||
const originalLineRange = s.delta(-diffOrigToMod);
|
||
moves.push(new rangeMapping_1.LineRangeMapping(originalLineRange, modifiedLineRange));
|
||
modifiedSet.addRange(modifiedLineRange);
|
||
originalSet.addRange(originalLineRange);
|
||
}
|
||
}
|
||
moves.sort((0, arrays_1.compareBy)(m => m.original.startLineNumber, arrays_1.numberComparator));
|
||
const monotonousChanges = new arraysFind_1.MonotonousArray(changes);
|
||
for (let i = 0; i < moves.length; i++) {
|
||
const move = moves[i];
|
||
const firstTouchingChangeOrig = monotonousChanges.findLastMonotonous(c => c.original.startLineNumber <= move.original.startLineNumber);
|
||
const firstTouchingChangeMod = (0, arraysFind_1.findLastMonotonous)(changes, c => c.modified.startLineNumber <= move.modified.startLineNumber);
|
||
const linesAbove = Math.max(move.original.startLineNumber - firstTouchingChangeOrig.original.startLineNumber, move.modified.startLineNumber - firstTouchingChangeMod.modified.startLineNumber);
|
||
const lastTouchingChangeOrig = monotonousChanges.findLastMonotonous(c => c.original.startLineNumber < move.original.endLineNumberExclusive);
|
||
const lastTouchingChangeMod = (0, arraysFind_1.findLastMonotonous)(changes, c => c.modified.startLineNumber < move.modified.endLineNumberExclusive);
|
||
const linesBelow = Math.max(lastTouchingChangeOrig.original.endLineNumberExclusive - move.original.endLineNumberExclusive, lastTouchingChangeMod.modified.endLineNumberExclusive - move.modified.endLineNumberExclusive);
|
||
let extendToTop;
|
||
for (extendToTop = 0; extendToTop < linesAbove; extendToTop++) {
|
||
const origLine = move.original.startLineNumber - extendToTop - 1;
|
||
const modLine = move.modified.startLineNumber - extendToTop - 1;
|
||
if (origLine > originalLines.length || modLine > modifiedLines.length) {
|
||
break;
|
||
}
|
||
if (modifiedSet.contains(modLine) || originalSet.contains(origLine)) {
|
||
break;
|
||
}
|
||
if (!areLinesSimilar(originalLines[origLine - 1], modifiedLines[modLine - 1], timeout)) {
|
||
break;
|
||
}
|
||
}
|
||
if (extendToTop > 0) {
|
||
originalSet.addRange(new lineRange_1.LineRange(move.original.startLineNumber - extendToTop, move.original.startLineNumber));
|
||
modifiedSet.addRange(new lineRange_1.LineRange(move.modified.startLineNumber - extendToTop, move.modified.startLineNumber));
|
||
}
|
||
let extendToBottom;
|
||
for (extendToBottom = 0; extendToBottom < linesBelow; extendToBottom++) {
|
||
const origLine = move.original.endLineNumberExclusive + extendToBottom;
|
||
const modLine = move.modified.endLineNumberExclusive + extendToBottom;
|
||
if (origLine > originalLines.length || modLine > modifiedLines.length) {
|
||
break;
|
||
}
|
||
if (modifiedSet.contains(modLine) || originalSet.contains(origLine)) {
|
||
break;
|
||
}
|
||
if (!areLinesSimilar(originalLines[origLine - 1], modifiedLines[modLine - 1], timeout)) {
|
||
break;
|
||
}
|
||
}
|
||
if (extendToBottom > 0) {
|
||
originalSet.addRange(new lineRange_1.LineRange(move.original.endLineNumberExclusive, move.original.endLineNumberExclusive + extendToBottom));
|
||
modifiedSet.addRange(new lineRange_1.LineRange(move.modified.endLineNumberExclusive, move.modified.endLineNumberExclusive + extendToBottom));
|
||
}
|
||
if (extendToTop > 0 || extendToBottom > 0) {
|
||
moves[i] = new rangeMapping_1.LineRangeMapping(new lineRange_1.LineRange(move.original.startLineNumber - extendToTop, move.original.endLineNumberExclusive + extendToBottom), new lineRange_1.LineRange(move.modified.startLineNumber - extendToTop, move.modified.endLineNumberExclusive + extendToBottom));
|
||
}
|
||
}
|
||
return moves;
|
||
}
|
||
function areLinesSimilar(line1, line2, timeout) {
|
||
if (line1.trim() === line2.trim()) {
|
||
return true;
|
||
}
|
||
if (line1.length > 300 && line2.length > 300) {
|
||
return false;
|
||
}
|
||
const myersDiffingAlgorithm = new myersDiffAlgorithm_1.MyersDiffAlgorithm();
|
||
const result = myersDiffingAlgorithm.compute(new linesSliceCharSequence_1.LinesSliceCharSequence([line1], new range_1.Range(1, 1, 1, line1.length), false), new linesSliceCharSequence_1.LinesSliceCharSequence([line2], new range_1.Range(1, 1, 1, line2.length), false), timeout);
|
||
let commonNonSpaceCharCount = 0;
|
||
const inverted = diffAlgorithm_1.SequenceDiff.invert(result.diffs, line1.length);
|
||
for (const seq of inverted) {
|
||
seq.seq1Range.forEach(idx => {
|
||
if (!(0, utils_1.isSpace)(line1.charCodeAt(idx))) {
|
||
commonNonSpaceCharCount++;
|
||
}
|
||
});
|
||
}
|
||
function countNonWsChars(str) {
|
||
let count = 0;
|
||
for (let i = 0; i < line1.length; i++) {
|
||
if (!(0, utils_1.isSpace)(str.charCodeAt(i))) {
|
||
count++;
|
||
}
|
||
}
|
||
return count;
|
||
}
|
||
const longerLineLength = countNonWsChars(line1.length > line2.length ? line1 : line2);
|
||
const r = commonNonSpaceCharCount / longerLineLength > 0.6 && longerLineLength > 10;
|
||
return r;
|
||
}
|
||
function joinCloseConsecutiveMoves(moves) {
|
||
if (moves.length === 0) {
|
||
return moves;
|
||
}
|
||
moves.sort((0, arrays_1.compareBy)(m => m.original.startLineNumber, arrays_1.numberComparator));
|
||
const result = [moves[0]];
|
||
for (let i = 1; i < moves.length; i++) {
|
||
const last = result[result.length - 1];
|
||
const current = moves[i];
|
||
const originalDist = current.original.startLineNumber - last.original.endLineNumberExclusive;
|
||
const modifiedDist = current.modified.startLineNumber - last.modified.endLineNumberExclusive;
|
||
const currentMoveAfterLast = originalDist >= 0 && modifiedDist >= 0;
|
||
if (currentMoveAfterLast && originalDist + modifiedDist <= 2) {
|
||
result[result.length - 1] = last.join(current);
|
||
continue;
|
||
}
|
||
result.push(current);
|
||
}
|
||
return result;
|
||
}
|
||
function removeMovesInSameDiff(changes, moves) {
|
||
const changesMonotonous = new arraysFind_1.MonotonousArray(changes);
|
||
moves = moves.filter(m => {
|
||
const diffBeforeEndOfMoveOriginal = changesMonotonous.findLastMonotonous(c => c.original.startLineNumber < m.original.endLineNumberExclusive)
|
||
|| new rangeMapping_1.LineRangeMapping(new lineRange_1.LineRange(1, 1), new lineRange_1.LineRange(1, 1));
|
||
const diffBeforeEndOfMoveModified = (0, arraysFind_1.findLastMonotonous)(changes, c => c.modified.startLineNumber < m.modified.endLineNumberExclusive);
|
||
const differentDiffs = diffBeforeEndOfMoveOriginal !== diffBeforeEndOfMoveModified;
|
||
return differentDiffs;
|
||
});
|
||
return moves;
|
||
}
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[56/*vs/editor/common/diff/defaultLinesDiffComputer/defaultLinesDiffComputer*/], __M([0/*require*/,1/*exports*/,7/*vs/base/common/arrays*/,12/*vs/base/common/assert*/,13/*vs/editor/common/core/lineRange*/,5/*vs/editor/common/core/offsetRange*/,2/*vs/editor/common/core/range*/,10/*vs/editor/common/diff/defaultLinesDiffComputer/algorithms/diffAlgorithm*/,54/*vs/editor/common/diff/defaultLinesDiffComputer/algorithms/dynamicProgrammingDiffing*/,32/*vs/editor/common/diff/defaultLinesDiffComputer/algorithms/myersDiffAlgorithm*/,55/*vs/editor/common/diff/defaultLinesDiffComputer/computeMovedLines*/,52/*vs/editor/common/diff/defaultLinesDiffComputer/heuristicSequenceOptimizations*/,53/*vs/editor/common/diff/defaultLinesDiffComputer/lineSequence*/,33/*vs/editor/common/diff/defaultLinesDiffComputer/linesSliceCharSequence*/,34/*vs/editor/common/diff/linesDiffComputer*/,17/*vs/editor/common/diff/rangeMapping*/]), function (require, exports, arrays_1, assert_1, lineRange_1, offsetRange_1, range_1, diffAlgorithm_1, dynamicProgrammingDiffing_1, myersDiffAlgorithm_1, computeMovedLines_1, heuristicSequenceOptimizations_1, lineSequence_1, linesSliceCharSequence_1, linesDiffComputer_1, rangeMapping_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.DefaultLinesDiffComputer = void 0;
|
||
exports.lineRangeMappingFromRangeMappings = lineRangeMappingFromRangeMappings;
|
||
exports.getLineRangeMapping = getLineRangeMapping;
|
||
class DefaultLinesDiffComputer {
|
||
constructor() {
|
||
this.dynamicProgrammingDiffing = new dynamicProgrammingDiffing_1.DynamicProgrammingDiffing();
|
||
this.myersDiffingAlgorithm = new myersDiffAlgorithm_1.MyersDiffAlgorithm();
|
||
}
|
||
computeDiff(originalLines, modifiedLines, options) {
|
||
if (originalLines.length <= 1 && (0, arrays_1.equals)(originalLines, modifiedLines, (a, b) => a === b)) {
|
||
return new linesDiffComputer_1.LinesDiff([], [], false);
|
||
}
|
||
if (originalLines.length === 1 && originalLines[0].length === 0 || modifiedLines.length === 1 && modifiedLines[0].length === 0) {
|
||
return new linesDiffComputer_1.LinesDiff([
|
||
new rangeMapping_1.DetailedLineRangeMapping(new lineRange_1.LineRange(1, originalLines.length + 1), new lineRange_1.LineRange(1, modifiedLines.length + 1), [
|
||
new rangeMapping_1.RangeMapping(new range_1.Range(1, 1, originalLines.length, originalLines[originalLines.length - 1].length + 1), new range_1.Range(1, 1, modifiedLines.length, modifiedLines[modifiedLines.length - 1].length + 1))
|
||
])
|
||
], [], false);
|
||
}
|
||
const timeout = options.maxComputationTimeMs === 0 ? diffAlgorithm_1.InfiniteTimeout.instance : new diffAlgorithm_1.DateTimeout(options.maxComputationTimeMs);
|
||
const considerWhitespaceChanges = !options.ignoreTrimWhitespace;
|
||
const perfectHashes = new Map();
|
||
function getOrCreateHash(text) {
|
||
let hash = perfectHashes.get(text);
|
||
if (hash === undefined) {
|
||
hash = perfectHashes.size;
|
||
perfectHashes.set(text, hash);
|
||
}
|
||
return hash;
|
||
}
|
||
const originalLinesHashes = originalLines.map((l) => getOrCreateHash(l.trim()));
|
||
const modifiedLinesHashes = modifiedLines.map((l) => getOrCreateHash(l.trim()));
|
||
const sequence1 = new lineSequence_1.LineSequence(originalLinesHashes, originalLines);
|
||
const sequence2 = new lineSequence_1.LineSequence(modifiedLinesHashes, modifiedLines);
|
||
const lineAlignmentResult = (() => {
|
||
if (sequence1.length + sequence2.length < 1700) {
|
||
// Use the improved algorithm for small files
|
||
return this.dynamicProgrammingDiffing.compute(sequence1, sequence2, timeout, (offset1, offset2) => originalLines[offset1] === modifiedLines[offset2]
|
||
? modifiedLines[offset2].length === 0
|
||
? 0.1
|
||
: 1 + Math.log(1 + modifiedLines[offset2].length)
|
||
: 0.99);
|
||
}
|
||
return this.myersDiffingAlgorithm.compute(sequence1, sequence2, timeout);
|
||
})();
|
||
let lineAlignments = lineAlignmentResult.diffs;
|
||
let hitTimeout = lineAlignmentResult.hitTimeout;
|
||
lineAlignments = (0, heuristicSequenceOptimizations_1.optimizeSequenceDiffs)(sequence1, sequence2, lineAlignments);
|
||
lineAlignments = (0, heuristicSequenceOptimizations_1.removeVeryShortMatchingLinesBetweenDiffs)(sequence1, sequence2, lineAlignments);
|
||
const alignments = [];
|
||
const scanForWhitespaceChanges = (equalLinesCount) => {
|
||
if (!considerWhitespaceChanges) {
|
||
return;
|
||
}
|
||
for (let i = 0; i < equalLinesCount; i++) {
|
||
const seq1Offset = seq1LastStart + i;
|
||
const seq2Offset = seq2LastStart + i;
|
||
if (originalLines[seq1Offset] !== modifiedLines[seq2Offset]) {
|
||
// This is because of whitespace changes, diff these lines
|
||
const characterDiffs = this.refineDiff(originalLines, modifiedLines, new diffAlgorithm_1.SequenceDiff(new offsetRange_1.OffsetRange(seq1Offset, seq1Offset + 1), new offsetRange_1.OffsetRange(seq2Offset, seq2Offset + 1)), timeout, considerWhitespaceChanges);
|
||
for (const a of characterDiffs.mappings) {
|
||
alignments.push(a);
|
||
}
|
||
if (characterDiffs.hitTimeout) {
|
||
hitTimeout = true;
|
||
}
|
||
}
|
||
}
|
||
};
|
||
let seq1LastStart = 0;
|
||
let seq2LastStart = 0;
|
||
for (const diff of lineAlignments) {
|
||
(0, assert_1.assertFn)(() => diff.seq1Range.start - seq1LastStart === diff.seq2Range.start - seq2LastStart);
|
||
const equalLinesCount = diff.seq1Range.start - seq1LastStart;
|
||
scanForWhitespaceChanges(equalLinesCount);
|
||
seq1LastStart = diff.seq1Range.endExclusive;
|
||
seq2LastStart = diff.seq2Range.endExclusive;
|
||
const characterDiffs = this.refineDiff(originalLines, modifiedLines, diff, timeout, considerWhitespaceChanges);
|
||
if (characterDiffs.hitTimeout) {
|
||
hitTimeout = true;
|
||
}
|
||
for (const a of characterDiffs.mappings) {
|
||
alignments.push(a);
|
||
}
|
||
}
|
||
scanForWhitespaceChanges(originalLines.length - seq1LastStart);
|
||
const changes = lineRangeMappingFromRangeMappings(alignments, originalLines, modifiedLines);
|
||
let moves = [];
|
||
if (options.computeMoves) {
|
||
moves = this.computeMoves(changes, originalLines, modifiedLines, originalLinesHashes, modifiedLinesHashes, timeout, considerWhitespaceChanges);
|
||
}
|
||
// Make sure all ranges are valid
|
||
(0, assert_1.assertFn)(() => {
|
||
function validatePosition(pos, lines) {
|
||
if (pos.lineNumber < 1 || pos.lineNumber > lines.length) {
|
||
return false;
|
||
}
|
||
const line = lines[pos.lineNumber - 1];
|
||
if (pos.column < 1 || pos.column > line.length + 1) {
|
||
return false;
|
||
}
|
||
return true;
|
||
}
|
||
function validateRange(range, lines) {
|
||
if (range.startLineNumber < 1 || range.startLineNumber > lines.length + 1) {
|
||
return false;
|
||
}
|
||
if (range.endLineNumberExclusive < 1 || range.endLineNumberExclusive > lines.length + 1) {
|
||
return false;
|
||
}
|
||
return true;
|
||
}
|
||
for (const c of changes) {
|
||
if (!c.innerChanges) {
|
||
return false;
|
||
}
|
||
for (const ic of c.innerChanges) {
|
||
const valid = validatePosition(ic.modifiedRange.getStartPosition(), modifiedLines) && validatePosition(ic.modifiedRange.getEndPosition(), modifiedLines) &&
|
||
validatePosition(ic.originalRange.getStartPosition(), originalLines) && validatePosition(ic.originalRange.getEndPosition(), originalLines);
|
||
if (!valid) {
|
||
return false;
|
||
}
|
||
}
|
||
if (!validateRange(c.modified, modifiedLines) || !validateRange(c.original, originalLines)) {
|
||
return false;
|
||
}
|
||
}
|
||
return true;
|
||
});
|
||
return new linesDiffComputer_1.LinesDiff(changes, moves, hitTimeout);
|
||
}
|
||
computeMoves(changes, originalLines, modifiedLines, hashedOriginalLines, hashedModifiedLines, timeout, considerWhitespaceChanges) {
|
||
const moves = (0, computeMovedLines_1.computeMovedLines)(changes, originalLines, modifiedLines, hashedOriginalLines, hashedModifiedLines, timeout);
|
||
const movesWithDiffs = moves.map(m => {
|
||
const moveChanges = this.refineDiff(originalLines, modifiedLines, new diffAlgorithm_1.SequenceDiff(m.original.toOffsetRange(), m.modified.toOffsetRange()), timeout, considerWhitespaceChanges);
|
||
const mappings = lineRangeMappingFromRangeMappings(moveChanges.mappings, originalLines, modifiedLines, true);
|
||
return new linesDiffComputer_1.MovedText(m, mappings);
|
||
});
|
||
return movesWithDiffs;
|
||
}
|
||
refineDiff(originalLines, modifiedLines, diff, timeout, considerWhitespaceChanges) {
|
||
const lineRangeMapping = toLineRangeMapping(diff);
|
||
const rangeMapping = lineRangeMapping.toRangeMapping2(originalLines, modifiedLines);
|
||
const slice1 = new linesSliceCharSequence_1.LinesSliceCharSequence(originalLines, rangeMapping.originalRange, considerWhitespaceChanges);
|
||
const slice2 = new linesSliceCharSequence_1.LinesSliceCharSequence(modifiedLines, rangeMapping.modifiedRange, considerWhitespaceChanges);
|
||
const diffResult = slice1.length + slice2.length < 500
|
||
? this.dynamicProgrammingDiffing.compute(slice1, slice2, timeout)
|
||
: this.myersDiffingAlgorithm.compute(slice1, slice2, timeout);
|
||
const check = false;
|
||
let diffs = diffResult.diffs;
|
||
if (check) {
|
||
diffAlgorithm_1.SequenceDiff.assertSorted(diffs);
|
||
}
|
||
diffs = (0, heuristicSequenceOptimizations_1.optimizeSequenceDiffs)(slice1, slice2, diffs);
|
||
if (check) {
|
||
diffAlgorithm_1.SequenceDiff.assertSorted(diffs);
|
||
}
|
||
diffs = (0, heuristicSequenceOptimizations_1.extendDiffsToEntireWordIfAppropriate)(slice1, slice2, diffs);
|
||
if (check) {
|
||
diffAlgorithm_1.SequenceDiff.assertSorted(diffs);
|
||
}
|
||
diffs = (0, heuristicSequenceOptimizations_1.removeShortMatches)(slice1, slice2, diffs);
|
||
if (check) {
|
||
diffAlgorithm_1.SequenceDiff.assertSorted(diffs);
|
||
}
|
||
diffs = (0, heuristicSequenceOptimizations_1.removeVeryShortMatchingTextBetweenLongDiffs)(slice1, slice2, diffs);
|
||
if (check) {
|
||
diffAlgorithm_1.SequenceDiff.assertSorted(diffs);
|
||
}
|
||
const result = diffs.map((d) => new rangeMapping_1.RangeMapping(slice1.translateRange(d.seq1Range), slice2.translateRange(d.seq2Range)));
|
||
if (check) {
|
||
rangeMapping_1.RangeMapping.assertSorted(result);
|
||
}
|
||
// Assert: result applied on original should be the same as diff applied to original
|
||
return {
|
||
mappings: result,
|
||
hitTimeout: diffResult.hitTimeout,
|
||
};
|
||
}
|
||
}
|
||
exports.DefaultLinesDiffComputer = DefaultLinesDiffComputer;
|
||
function lineRangeMappingFromRangeMappings(alignments, originalLines, modifiedLines, dontAssertStartLine = false) {
|
||
const changes = [];
|
||
for (const g of (0, arrays_1.groupAdjacentBy)(alignments.map(a => getLineRangeMapping(a, originalLines, modifiedLines)), (a1, a2) => a1.original.overlapOrTouch(a2.original)
|
||
|| a1.modified.overlapOrTouch(a2.modified))) {
|
||
const first = g[0];
|
||
const last = g[g.length - 1];
|
||
changes.push(new rangeMapping_1.DetailedLineRangeMapping(first.original.join(last.original), first.modified.join(last.modified), g.map(a => a.innerChanges[0])));
|
||
}
|
||
(0, assert_1.assertFn)(() => {
|
||
if (!dontAssertStartLine && changes.length > 0) {
|
||
if (changes[0].modified.startLineNumber !== changes[0].original.startLineNumber) {
|
||
return false;
|
||
}
|
||
if (modifiedLines.length - changes[changes.length - 1].modified.endLineNumberExclusive !== originalLines.length - changes[changes.length - 1].original.endLineNumberExclusive) {
|
||
return false;
|
||
}
|
||
}
|
||
return (0, assert_1.checkAdjacentItems)(changes, (m1, m2) => m2.original.startLineNumber - m1.original.endLineNumberExclusive === m2.modified.startLineNumber - m1.modified.endLineNumberExclusive &&
|
||
// There has to be an unchanged line in between (otherwise both diffs should have been joined)
|
||
m1.original.endLineNumberExclusive < m2.original.startLineNumber &&
|
||
m1.modified.endLineNumberExclusive < m2.modified.startLineNumber);
|
||
});
|
||
return changes;
|
||
}
|
||
function getLineRangeMapping(rangeMapping, originalLines, modifiedLines) {
|
||
let lineStartDelta = 0;
|
||
let lineEndDelta = 0;
|
||
// rangeMapping describes the edit that replaces `rangeMapping.originalRange` with `newText := getText(modifiedLines, rangeMapping.modifiedRange)`.
|
||
// original: ]xxx \n <- this line is not modified
|
||
// modified: ]xx \n
|
||
if (rangeMapping.modifiedRange.endColumn === 1 && rangeMapping.originalRange.endColumn === 1
|
||
&& rangeMapping.originalRange.startLineNumber + lineStartDelta <= rangeMapping.originalRange.endLineNumber
|
||
&& rangeMapping.modifiedRange.startLineNumber + lineStartDelta <= rangeMapping.modifiedRange.endLineNumber) {
|
||
// We can only do this if the range is not empty yet
|
||
lineEndDelta = -1;
|
||
}
|
||
// original: xxx[ \n <- this line is not modified
|
||
// modified: xxx[ \n
|
||
if (rangeMapping.modifiedRange.startColumn - 1 >= modifiedLines[rangeMapping.modifiedRange.startLineNumber - 1].length
|
||
&& rangeMapping.originalRange.startColumn - 1 >= originalLines[rangeMapping.originalRange.startLineNumber - 1].length
|
||
&& rangeMapping.originalRange.startLineNumber <= rangeMapping.originalRange.endLineNumber + lineEndDelta
|
||
&& rangeMapping.modifiedRange.startLineNumber <= rangeMapping.modifiedRange.endLineNumber + lineEndDelta) {
|
||
// We can only do this if the range is not empty yet
|
||
lineStartDelta = 1;
|
||
}
|
||
const originalLineRange = new lineRange_1.LineRange(rangeMapping.originalRange.startLineNumber + lineStartDelta, rangeMapping.originalRange.endLineNumber + 1 + lineEndDelta);
|
||
const modifiedLineRange = new lineRange_1.LineRange(rangeMapping.modifiedRange.startLineNumber + lineStartDelta, rangeMapping.modifiedRange.endLineNumber + 1 + lineEndDelta);
|
||
return new rangeMapping_1.DetailedLineRangeMapping(originalLineRange, modifiedLineRange, [rangeMapping]);
|
||
}
|
||
function toLineRangeMapping(sequenceDiff) {
|
||
return new rangeMapping_1.LineRangeMapping(new lineRange_1.LineRange(sequenceDiff.seq1Range.start + 1, sequenceDiff.seq1Range.endExclusive + 1), new lineRange_1.LineRange(sequenceDiff.seq2Range.start + 1, sequenceDiff.seq2Range.endExclusive + 1));
|
||
}
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[57/*vs/editor/common/diff/legacyLinesDiffComputer*/], __M([0/*require*/,1/*exports*/,24/*vs/base/common/diff/diff*/,34/*vs/editor/common/diff/linesDiffComputer*/,17/*vs/editor/common/diff/rangeMapping*/,6/*vs/base/common/strings*/,2/*vs/editor/common/core/range*/,12/*vs/base/common/assert*/,13/*vs/editor/common/core/lineRange*/]), function (require, exports, diff_1, linesDiffComputer_1, rangeMapping_1, strings, range_1, assert_1, lineRange_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.DiffComputer = exports.LegacyLinesDiffComputer = void 0;
|
||
const MINIMUM_MATCHING_CHARACTER_LENGTH = 3;
|
||
class LegacyLinesDiffComputer {
|
||
computeDiff(originalLines, modifiedLines, options) {
|
||
const diffComputer = new DiffComputer(originalLines, modifiedLines, {
|
||
maxComputationTime: options.maxComputationTimeMs,
|
||
shouldIgnoreTrimWhitespace: options.ignoreTrimWhitespace,
|
||
shouldComputeCharChanges: true,
|
||
shouldMakePrettyDiff: true,
|
||
shouldPostProcessCharChanges: true,
|
||
});
|
||
const result = diffComputer.computeDiff();
|
||
const changes = [];
|
||
let lastChange = null;
|
||
for (const c of result.changes) {
|
||
let originalRange;
|
||
if (c.originalEndLineNumber === 0) {
|
||
// Insertion
|
||
originalRange = new lineRange_1.LineRange(c.originalStartLineNumber + 1, c.originalStartLineNumber + 1);
|
||
}
|
||
else {
|
||
originalRange = new lineRange_1.LineRange(c.originalStartLineNumber, c.originalEndLineNumber + 1);
|
||
}
|
||
let modifiedRange;
|
||
if (c.modifiedEndLineNumber === 0) {
|
||
// Deletion
|
||
modifiedRange = new lineRange_1.LineRange(c.modifiedStartLineNumber + 1, c.modifiedStartLineNumber + 1);
|
||
}
|
||
else {
|
||
modifiedRange = new lineRange_1.LineRange(c.modifiedStartLineNumber, c.modifiedEndLineNumber + 1);
|
||
}
|
||
let change = new rangeMapping_1.DetailedLineRangeMapping(originalRange, modifiedRange, c.charChanges?.map(c => new rangeMapping_1.RangeMapping(new range_1.Range(c.originalStartLineNumber, c.originalStartColumn, c.originalEndLineNumber, c.originalEndColumn), new range_1.Range(c.modifiedStartLineNumber, c.modifiedStartColumn, c.modifiedEndLineNumber, c.modifiedEndColumn))));
|
||
if (lastChange) {
|
||
if (lastChange.modified.endLineNumberExclusive === change.modified.startLineNumber
|
||
|| lastChange.original.endLineNumberExclusive === change.original.startLineNumber) {
|
||
// join touching diffs. Probably moving diffs up/down in the algorithm causes touching diffs.
|
||
change = new rangeMapping_1.DetailedLineRangeMapping(lastChange.original.join(change.original), lastChange.modified.join(change.modified), lastChange.innerChanges && change.innerChanges ?
|
||
lastChange.innerChanges.concat(change.innerChanges) : undefined);
|
||
changes.pop();
|
||
}
|
||
}
|
||
changes.push(change);
|
||
lastChange = change;
|
||
}
|
||
(0, assert_1.assertFn)(() => {
|
||
return (0, assert_1.checkAdjacentItems)(changes, (m1, m2) => m2.original.startLineNumber - m1.original.endLineNumberExclusive === m2.modified.startLineNumber - m1.modified.endLineNumberExclusive &&
|
||
// There has to be an unchanged line in between (otherwise both diffs should have been joined)
|
||
m1.original.endLineNumberExclusive < m2.original.startLineNumber &&
|
||
m1.modified.endLineNumberExclusive < m2.modified.startLineNumber);
|
||
});
|
||
return new linesDiffComputer_1.LinesDiff(changes, [], result.quitEarly);
|
||
}
|
||
}
|
||
exports.LegacyLinesDiffComputer = LegacyLinesDiffComputer;
|
||
function computeDiff(originalSequence, modifiedSequence, continueProcessingPredicate, pretty) {
|
||
const diffAlgo = new diff_1.LcsDiff(originalSequence, modifiedSequence, continueProcessingPredicate);
|
||
return diffAlgo.ComputeDiff(pretty);
|
||
}
|
||
class LineSequence {
|
||
constructor(lines) {
|
||
const startColumns = [];
|
||
const endColumns = [];
|
||
for (let i = 0, length = lines.length; i < length; i++) {
|
||
startColumns[i] = getFirstNonBlankColumn(lines[i], 1);
|
||
endColumns[i] = getLastNonBlankColumn(lines[i], 1);
|
||
}
|
||
this.lines = lines;
|
||
this._startColumns = startColumns;
|
||
this._endColumns = endColumns;
|
||
}
|
||
getElements() {
|
||
const elements = [];
|
||
for (let i = 0, len = this.lines.length; i < len; i++) {
|
||
elements[i] = this.lines[i].substring(this._startColumns[i] - 1, this._endColumns[i] - 1);
|
||
}
|
||
return elements;
|
||
}
|
||
getStrictElement(index) {
|
||
return this.lines[index];
|
||
}
|
||
getStartLineNumber(i) {
|
||
return i + 1;
|
||
}
|
||
getEndLineNumber(i) {
|
||
return i + 1;
|
||
}
|
||
createCharSequence(shouldIgnoreTrimWhitespace, startIndex, endIndex) {
|
||
const charCodes = [];
|
||
const lineNumbers = [];
|
||
const columns = [];
|
||
let len = 0;
|
||
for (let index = startIndex; index <= endIndex; index++) {
|
||
const lineContent = this.lines[index];
|
||
const startColumn = (shouldIgnoreTrimWhitespace ? this._startColumns[index] : 1);
|
||
const endColumn = (shouldIgnoreTrimWhitespace ? this._endColumns[index] : lineContent.length + 1);
|
||
for (let col = startColumn; col < endColumn; col++) {
|
||
charCodes[len] = lineContent.charCodeAt(col - 1);
|
||
lineNumbers[len] = index + 1;
|
||
columns[len] = col;
|
||
len++;
|
||
}
|
||
if (!shouldIgnoreTrimWhitespace && index < endIndex) {
|
||
// Add \n if trim whitespace is not ignored
|
||
charCodes[len] = 10 /* CharCode.LineFeed */;
|
||
lineNumbers[len] = index + 1;
|
||
columns[len] = lineContent.length + 1;
|
||
len++;
|
||
}
|
||
}
|
||
return new CharSequence(charCodes, lineNumbers, columns);
|
||
}
|
||
}
|
||
class CharSequence {
|
||
constructor(charCodes, lineNumbers, columns) {
|
||
this._charCodes = charCodes;
|
||
this._lineNumbers = lineNumbers;
|
||
this._columns = columns;
|
||
}
|
||
toString() {
|
||
return ('[' + this._charCodes.map((s, idx) => (s === 10 /* CharCode.LineFeed */ ? '\\n' : String.fromCharCode(s)) + `-(${this._lineNumbers[idx]},${this._columns[idx]})`).join(', ') + ']');
|
||
}
|
||
_assertIndex(index, arr) {
|
||
if (index < 0 || index >= arr.length) {
|
||
throw new Error(`Illegal index`);
|
||
}
|
||
}
|
||
getElements() {
|
||
return this._charCodes;
|
||
}
|
||
getStartLineNumber(i) {
|
||
if (i > 0 && i === this._lineNumbers.length) {
|
||
// the start line number of the element after the last element
|
||
// is the end line number of the last element
|
||
return this.getEndLineNumber(i - 1);
|
||
}
|
||
this._assertIndex(i, this._lineNumbers);
|
||
return this._lineNumbers[i];
|
||
}
|
||
getEndLineNumber(i) {
|
||
if (i === -1) {
|
||
// the end line number of the element before the first element
|
||
// is the start line number of the first element
|
||
return this.getStartLineNumber(i + 1);
|
||
}
|
||
this._assertIndex(i, this._lineNumbers);
|
||
if (this._charCodes[i] === 10 /* CharCode.LineFeed */) {
|
||
return this._lineNumbers[i] + 1;
|
||
}
|
||
return this._lineNumbers[i];
|
||
}
|
||
getStartColumn(i) {
|
||
if (i > 0 && i === this._columns.length) {
|
||
// the start column of the element after the last element
|
||
// is the end column of the last element
|
||
return this.getEndColumn(i - 1);
|
||
}
|
||
this._assertIndex(i, this._columns);
|
||
return this._columns[i];
|
||
}
|
||
getEndColumn(i) {
|
||
if (i === -1) {
|
||
// the end column of the element before the first element
|
||
// is the start column of the first element
|
||
return this.getStartColumn(i + 1);
|
||
}
|
||
this._assertIndex(i, this._columns);
|
||
if (this._charCodes[i] === 10 /* CharCode.LineFeed */) {
|
||
return 1;
|
||
}
|
||
return this._columns[i] + 1;
|
||
}
|
||
}
|
||
class CharChange {
|
||
constructor(originalStartLineNumber, originalStartColumn, originalEndLineNumber, originalEndColumn, modifiedStartLineNumber, modifiedStartColumn, modifiedEndLineNumber, modifiedEndColumn) {
|
||
this.originalStartLineNumber = originalStartLineNumber;
|
||
this.originalStartColumn = originalStartColumn;
|
||
this.originalEndLineNumber = originalEndLineNumber;
|
||
this.originalEndColumn = originalEndColumn;
|
||
this.modifiedStartLineNumber = modifiedStartLineNumber;
|
||
this.modifiedStartColumn = modifiedStartColumn;
|
||
this.modifiedEndLineNumber = modifiedEndLineNumber;
|
||
this.modifiedEndColumn = modifiedEndColumn;
|
||
}
|
||
static createFromDiffChange(diffChange, originalCharSequence, modifiedCharSequence) {
|
||
const originalStartLineNumber = originalCharSequence.getStartLineNumber(diffChange.originalStart);
|
||
const originalStartColumn = originalCharSequence.getStartColumn(diffChange.originalStart);
|
||
const originalEndLineNumber = originalCharSequence.getEndLineNumber(diffChange.originalStart + diffChange.originalLength - 1);
|
||
const originalEndColumn = originalCharSequence.getEndColumn(diffChange.originalStart + diffChange.originalLength - 1);
|
||
const modifiedStartLineNumber = modifiedCharSequence.getStartLineNumber(diffChange.modifiedStart);
|
||
const modifiedStartColumn = modifiedCharSequence.getStartColumn(diffChange.modifiedStart);
|
||
const modifiedEndLineNumber = modifiedCharSequence.getEndLineNumber(diffChange.modifiedStart + diffChange.modifiedLength - 1);
|
||
const modifiedEndColumn = modifiedCharSequence.getEndColumn(diffChange.modifiedStart + diffChange.modifiedLength - 1);
|
||
return new CharChange(originalStartLineNumber, originalStartColumn, originalEndLineNumber, originalEndColumn, modifiedStartLineNumber, modifiedStartColumn, modifiedEndLineNumber, modifiedEndColumn);
|
||
}
|
||
}
|
||
function postProcessCharChanges(rawChanges) {
|
||
if (rawChanges.length <= 1) {
|
||
return rawChanges;
|
||
}
|
||
const result = [rawChanges[0]];
|
||
let prevChange = result[0];
|
||
for (let i = 1, len = rawChanges.length; i < len; i++) {
|
||
const currChange = rawChanges[i];
|
||
const originalMatchingLength = currChange.originalStart - (prevChange.originalStart + prevChange.originalLength);
|
||
const modifiedMatchingLength = currChange.modifiedStart - (prevChange.modifiedStart + prevChange.modifiedLength);
|
||
// Both of the above should be equal, but the continueProcessingPredicate may prevent this from being true
|
||
const matchingLength = Math.min(originalMatchingLength, modifiedMatchingLength);
|
||
if (matchingLength < MINIMUM_MATCHING_CHARACTER_LENGTH) {
|
||
// Merge the current change into the previous one
|
||
prevChange.originalLength = (currChange.originalStart + currChange.originalLength) - prevChange.originalStart;
|
||
prevChange.modifiedLength = (currChange.modifiedStart + currChange.modifiedLength) - prevChange.modifiedStart;
|
||
}
|
||
else {
|
||
// Add the current change
|
||
result.push(currChange);
|
||
prevChange = currChange;
|
||
}
|
||
}
|
||
return result;
|
||
}
|
||
class LineChange {
|
||
constructor(originalStartLineNumber, originalEndLineNumber, modifiedStartLineNumber, modifiedEndLineNumber, charChanges) {
|
||
this.originalStartLineNumber = originalStartLineNumber;
|
||
this.originalEndLineNumber = originalEndLineNumber;
|
||
this.modifiedStartLineNumber = modifiedStartLineNumber;
|
||
this.modifiedEndLineNumber = modifiedEndLineNumber;
|
||
this.charChanges = charChanges;
|
||
}
|
||
static createFromDiffResult(shouldIgnoreTrimWhitespace, diffChange, originalLineSequence, modifiedLineSequence, continueCharDiff, shouldComputeCharChanges, shouldPostProcessCharChanges) {
|
||
let originalStartLineNumber;
|
||
let originalEndLineNumber;
|
||
let modifiedStartLineNumber;
|
||
let modifiedEndLineNumber;
|
||
let charChanges = undefined;
|
||
if (diffChange.originalLength === 0) {
|
||
originalStartLineNumber = originalLineSequence.getStartLineNumber(diffChange.originalStart) - 1;
|
||
originalEndLineNumber = 0;
|
||
}
|
||
else {
|
||
originalStartLineNumber = originalLineSequence.getStartLineNumber(diffChange.originalStart);
|
||
originalEndLineNumber = originalLineSequence.getEndLineNumber(diffChange.originalStart + diffChange.originalLength - 1);
|
||
}
|
||
if (diffChange.modifiedLength === 0) {
|
||
modifiedStartLineNumber = modifiedLineSequence.getStartLineNumber(diffChange.modifiedStart) - 1;
|
||
modifiedEndLineNumber = 0;
|
||
}
|
||
else {
|
||
modifiedStartLineNumber = modifiedLineSequence.getStartLineNumber(diffChange.modifiedStart);
|
||
modifiedEndLineNumber = modifiedLineSequence.getEndLineNumber(diffChange.modifiedStart + diffChange.modifiedLength - 1);
|
||
}
|
||
if (shouldComputeCharChanges && diffChange.originalLength > 0 && diffChange.originalLength < 20 && diffChange.modifiedLength > 0 && diffChange.modifiedLength < 20 && continueCharDiff()) {
|
||
// Compute character changes for diff chunks of at most 20 lines...
|
||
const originalCharSequence = originalLineSequence.createCharSequence(shouldIgnoreTrimWhitespace, diffChange.originalStart, diffChange.originalStart + diffChange.originalLength - 1);
|
||
const modifiedCharSequence = modifiedLineSequence.createCharSequence(shouldIgnoreTrimWhitespace, diffChange.modifiedStart, diffChange.modifiedStart + diffChange.modifiedLength - 1);
|
||
if (originalCharSequence.getElements().length > 0 && modifiedCharSequence.getElements().length > 0) {
|
||
let rawChanges = computeDiff(originalCharSequence, modifiedCharSequence, continueCharDiff, true).changes;
|
||
if (shouldPostProcessCharChanges) {
|
||
rawChanges = postProcessCharChanges(rawChanges);
|
||
}
|
||
charChanges = [];
|
||
for (let i = 0, length = rawChanges.length; i < length; i++) {
|
||
charChanges.push(CharChange.createFromDiffChange(rawChanges[i], originalCharSequence, modifiedCharSequence));
|
||
}
|
||
}
|
||
}
|
||
return new LineChange(originalStartLineNumber, originalEndLineNumber, modifiedStartLineNumber, modifiedEndLineNumber, charChanges);
|
||
}
|
||
}
|
||
class DiffComputer {
|
||
constructor(originalLines, modifiedLines, opts) {
|
||
this.shouldComputeCharChanges = opts.shouldComputeCharChanges;
|
||
this.shouldPostProcessCharChanges = opts.shouldPostProcessCharChanges;
|
||
this.shouldIgnoreTrimWhitespace = opts.shouldIgnoreTrimWhitespace;
|
||
this.shouldMakePrettyDiff = opts.shouldMakePrettyDiff;
|
||
this.originalLines = originalLines;
|
||
this.modifiedLines = modifiedLines;
|
||
this.original = new LineSequence(originalLines);
|
||
this.modified = new LineSequence(modifiedLines);
|
||
this.continueLineDiff = createContinueProcessingPredicate(opts.maxComputationTime);
|
||
this.continueCharDiff = createContinueProcessingPredicate(opts.maxComputationTime === 0 ? 0 : Math.min(opts.maxComputationTime, 5000)); // never run after 5s for character changes...
|
||
}
|
||
computeDiff() {
|
||
if (this.original.lines.length === 1 && this.original.lines[0].length === 0) {
|
||
// empty original => fast path
|
||
if (this.modified.lines.length === 1 && this.modified.lines[0].length === 0) {
|
||
return {
|
||
quitEarly: false,
|
||
changes: []
|
||
};
|
||
}
|
||
return {
|
||
quitEarly: false,
|
||
changes: [{
|
||
originalStartLineNumber: 1,
|
||
originalEndLineNumber: 1,
|
||
modifiedStartLineNumber: 1,
|
||
modifiedEndLineNumber: this.modified.lines.length,
|
||
charChanges: undefined
|
||
}]
|
||
};
|
||
}
|
||
if (this.modified.lines.length === 1 && this.modified.lines[0].length === 0) {
|
||
// empty modified => fast path
|
||
return {
|
||
quitEarly: false,
|
||
changes: [{
|
||
originalStartLineNumber: 1,
|
||
originalEndLineNumber: this.original.lines.length,
|
||
modifiedStartLineNumber: 1,
|
||
modifiedEndLineNumber: 1,
|
||
charChanges: undefined
|
||
}]
|
||
};
|
||
}
|
||
const diffResult = computeDiff(this.original, this.modified, this.continueLineDiff, this.shouldMakePrettyDiff);
|
||
const rawChanges = diffResult.changes;
|
||
const quitEarly = diffResult.quitEarly;
|
||
// The diff is always computed with ignoring trim whitespace
|
||
// This ensures we get the prettiest diff
|
||
if (this.shouldIgnoreTrimWhitespace) {
|
||
const lineChanges = [];
|
||
for (let i = 0, length = rawChanges.length; i < length; i++) {
|
||
lineChanges.push(LineChange.createFromDiffResult(this.shouldIgnoreTrimWhitespace, rawChanges[i], this.original, this.modified, this.continueCharDiff, this.shouldComputeCharChanges, this.shouldPostProcessCharChanges));
|
||
}
|
||
return {
|
||
quitEarly: quitEarly,
|
||
changes: lineChanges
|
||
};
|
||
}
|
||
// Need to post-process and introduce changes where the trim whitespace is different
|
||
// Note that we are looping starting at -1 to also cover the lines before the first change
|
||
const result = [];
|
||
let originalLineIndex = 0;
|
||
let modifiedLineIndex = 0;
|
||
for (let i = -1 /* !!!! */, len = rawChanges.length; i < len; i++) {
|
||
const nextChange = (i + 1 < len ? rawChanges[i + 1] : null);
|
||
const originalStop = (nextChange ? nextChange.originalStart : this.originalLines.length);
|
||
const modifiedStop = (nextChange ? nextChange.modifiedStart : this.modifiedLines.length);
|
||
while (originalLineIndex < originalStop && modifiedLineIndex < modifiedStop) {
|
||
const originalLine = this.originalLines[originalLineIndex];
|
||
const modifiedLine = this.modifiedLines[modifiedLineIndex];
|
||
if (originalLine !== modifiedLine) {
|
||
// These lines differ only in trim whitespace
|
||
// Check the leading whitespace
|
||
{
|
||
let originalStartColumn = getFirstNonBlankColumn(originalLine, 1);
|
||
let modifiedStartColumn = getFirstNonBlankColumn(modifiedLine, 1);
|
||
while (originalStartColumn > 1 && modifiedStartColumn > 1) {
|
||
const originalChar = originalLine.charCodeAt(originalStartColumn - 2);
|
||
const modifiedChar = modifiedLine.charCodeAt(modifiedStartColumn - 2);
|
||
if (originalChar !== modifiedChar) {
|
||
break;
|
||
}
|
||
originalStartColumn--;
|
||
modifiedStartColumn--;
|
||
}
|
||
if (originalStartColumn > 1 || modifiedStartColumn > 1) {
|
||
this._pushTrimWhitespaceCharChange(result, originalLineIndex + 1, 1, originalStartColumn, modifiedLineIndex + 1, 1, modifiedStartColumn);
|
||
}
|
||
}
|
||
// Check the trailing whitespace
|
||
{
|
||
let originalEndColumn = getLastNonBlankColumn(originalLine, 1);
|
||
let modifiedEndColumn = getLastNonBlankColumn(modifiedLine, 1);
|
||
const originalMaxColumn = originalLine.length + 1;
|
||
const modifiedMaxColumn = modifiedLine.length + 1;
|
||
while (originalEndColumn < originalMaxColumn && modifiedEndColumn < modifiedMaxColumn) {
|
||
const originalChar = originalLine.charCodeAt(originalEndColumn - 1);
|
||
const modifiedChar = originalLine.charCodeAt(modifiedEndColumn - 1);
|
||
if (originalChar !== modifiedChar) {
|
||
break;
|
||
}
|
||
originalEndColumn++;
|
||
modifiedEndColumn++;
|
||
}
|
||
if (originalEndColumn < originalMaxColumn || modifiedEndColumn < modifiedMaxColumn) {
|
||
this._pushTrimWhitespaceCharChange(result, originalLineIndex + 1, originalEndColumn, originalMaxColumn, modifiedLineIndex + 1, modifiedEndColumn, modifiedMaxColumn);
|
||
}
|
||
}
|
||
}
|
||
originalLineIndex++;
|
||
modifiedLineIndex++;
|
||
}
|
||
if (nextChange) {
|
||
// Emit the actual change
|
||
result.push(LineChange.createFromDiffResult(this.shouldIgnoreTrimWhitespace, nextChange, this.original, this.modified, this.continueCharDiff, this.shouldComputeCharChanges, this.shouldPostProcessCharChanges));
|
||
originalLineIndex += nextChange.originalLength;
|
||
modifiedLineIndex += nextChange.modifiedLength;
|
||
}
|
||
}
|
||
return {
|
||
quitEarly: quitEarly,
|
||
changes: result
|
||
};
|
||
}
|
||
_pushTrimWhitespaceCharChange(result, originalLineNumber, originalStartColumn, originalEndColumn, modifiedLineNumber, modifiedStartColumn, modifiedEndColumn) {
|
||
if (this._mergeTrimWhitespaceCharChange(result, originalLineNumber, originalStartColumn, originalEndColumn, modifiedLineNumber, modifiedStartColumn, modifiedEndColumn)) {
|
||
// Merged into previous
|
||
return;
|
||
}
|
||
let charChanges = undefined;
|
||
if (this.shouldComputeCharChanges) {
|
||
charChanges = [new CharChange(originalLineNumber, originalStartColumn, originalLineNumber, originalEndColumn, modifiedLineNumber, modifiedStartColumn, modifiedLineNumber, modifiedEndColumn)];
|
||
}
|
||
result.push(new LineChange(originalLineNumber, originalLineNumber, modifiedLineNumber, modifiedLineNumber, charChanges));
|
||
}
|
||
_mergeTrimWhitespaceCharChange(result, originalLineNumber, originalStartColumn, originalEndColumn, modifiedLineNumber, modifiedStartColumn, modifiedEndColumn) {
|
||
const len = result.length;
|
||
if (len === 0) {
|
||
return false;
|
||
}
|
||
const prevChange = result[len - 1];
|
||
if (prevChange.originalEndLineNumber === 0 || prevChange.modifiedEndLineNumber === 0) {
|
||
// Don't merge with inserts/deletes
|
||
return false;
|
||
}
|
||
if (prevChange.originalEndLineNumber === originalLineNumber && prevChange.modifiedEndLineNumber === modifiedLineNumber) {
|
||
if (this.shouldComputeCharChanges && prevChange.charChanges) {
|
||
prevChange.charChanges.push(new CharChange(originalLineNumber, originalStartColumn, originalLineNumber, originalEndColumn, modifiedLineNumber, modifiedStartColumn, modifiedLineNumber, modifiedEndColumn));
|
||
}
|
||
return true;
|
||
}
|
||
if (prevChange.originalEndLineNumber + 1 === originalLineNumber && prevChange.modifiedEndLineNumber + 1 === modifiedLineNumber) {
|
||
prevChange.originalEndLineNumber = originalLineNumber;
|
||
prevChange.modifiedEndLineNumber = modifiedLineNumber;
|
||
if (this.shouldComputeCharChanges && prevChange.charChanges) {
|
||
prevChange.charChanges.push(new CharChange(originalLineNumber, originalStartColumn, originalLineNumber, originalEndColumn, modifiedLineNumber, modifiedStartColumn, modifiedLineNumber, modifiedEndColumn));
|
||
}
|
||
return true;
|
||
}
|
||
return false;
|
||
}
|
||
}
|
||
exports.DiffComputer = DiffComputer;
|
||
function getFirstNonBlankColumn(txt, defaultValue) {
|
||
const r = strings.firstNonWhitespaceIndex(txt);
|
||
if (r === -1) {
|
||
return defaultValue;
|
||
}
|
||
return r + 1;
|
||
}
|
||
function getLastNonBlankColumn(txt, defaultValue) {
|
||
const r = strings.lastNonWhitespaceIndex(txt);
|
||
if (r === -1) {
|
||
return defaultValue;
|
||
}
|
||
return r + 2;
|
||
}
|
||
function createContinueProcessingPredicate(maximumRuntime) {
|
||
if (maximumRuntime === 0) {
|
||
return () => true;
|
||
}
|
||
const startTime = Date.now();
|
||
return () => {
|
||
return Date.now() - startTime < maximumRuntime;
|
||
};
|
||
}
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[58/*vs/editor/common/diff/linesDiffComputers*/], __M([0/*require*/,1/*exports*/,57/*vs/editor/common/diff/legacyLinesDiffComputer*/,56/*vs/editor/common/diff/defaultLinesDiffComputer/defaultLinesDiffComputer*/]), function (require, exports, legacyLinesDiffComputer_1, defaultLinesDiffComputer_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.linesDiffComputers = void 0;
|
||
exports.linesDiffComputers = {
|
||
getLegacy: () => new legacyLinesDiffComputer_1.LegacyLinesDiffComputer(),
|
||
getDefault: () => new defaultLinesDiffComputer_1.DefaultLinesDiffComputer(),
|
||
};
|
||
});
|
||
|
||
define(__m[59/*vs/editor/common/languages/defaultDocumentColorsComputer*/], __M([0/*require*/,1/*exports*/,40/*vs/base/common/color*/]), function (require, exports, color_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.computeDefaultDocumentColors = computeDefaultDocumentColors;
|
||
function _parseCaptureGroups(captureGroups) {
|
||
const values = [];
|
||
for (const captureGroup of captureGroups) {
|
||
const parsedNumber = Number(captureGroup);
|
||
if (parsedNumber || parsedNumber === 0 && captureGroup.replace(/\s/g, '') !== '') {
|
||
values.push(parsedNumber);
|
||
}
|
||
}
|
||
return values;
|
||
}
|
||
function _toIColor(r, g, b, a) {
|
||
return {
|
||
red: r / 255,
|
||
blue: b / 255,
|
||
green: g / 255,
|
||
alpha: a
|
||
};
|
||
}
|
||
function _findRange(model, match) {
|
||
const index = match.index;
|
||
const length = match[0].length;
|
||
if (!index) {
|
||
return;
|
||
}
|
||
const startPosition = model.positionAt(index);
|
||
const range = {
|
||
startLineNumber: startPosition.lineNumber,
|
||
startColumn: startPosition.column,
|
||
endLineNumber: startPosition.lineNumber,
|
||
endColumn: startPosition.column + length
|
||
};
|
||
return range;
|
||
}
|
||
function _findHexColorInformation(range, hexValue) {
|
||
if (!range) {
|
||
return;
|
||
}
|
||
const parsedHexColor = color_1.Color.Format.CSS.parseHex(hexValue);
|
||
if (!parsedHexColor) {
|
||
return;
|
||
}
|
||
return {
|
||
range: range,
|
||
color: _toIColor(parsedHexColor.rgba.r, parsedHexColor.rgba.g, parsedHexColor.rgba.b, parsedHexColor.rgba.a)
|
||
};
|
||
}
|
||
function _findRGBColorInformation(range, matches, isAlpha) {
|
||
if (!range || matches.length !== 1) {
|
||
return;
|
||
}
|
||
const match = matches[0];
|
||
const captureGroups = match.values();
|
||
const parsedRegex = _parseCaptureGroups(captureGroups);
|
||
return {
|
||
range: range,
|
||
color: _toIColor(parsedRegex[0], parsedRegex[1], parsedRegex[2], isAlpha ? parsedRegex[3] : 1)
|
||
};
|
||
}
|
||
function _findHSLColorInformation(range, matches, isAlpha) {
|
||
if (!range || matches.length !== 1) {
|
||
return;
|
||
}
|
||
const match = matches[0];
|
||
const captureGroups = match.values();
|
||
const parsedRegex = _parseCaptureGroups(captureGroups);
|
||
const colorEquivalent = new color_1.Color(new color_1.HSLA(parsedRegex[0], parsedRegex[1] / 100, parsedRegex[2] / 100, isAlpha ? parsedRegex[3] : 1));
|
||
return {
|
||
range: range,
|
||
color: _toIColor(colorEquivalent.rgba.r, colorEquivalent.rgba.g, colorEquivalent.rgba.b, colorEquivalent.rgba.a)
|
||
};
|
||
}
|
||
function _findMatches(model, regex) {
|
||
if (typeof model === 'string') {
|
||
return [...model.matchAll(regex)];
|
||
}
|
||
else {
|
||
return model.findMatches(regex);
|
||
}
|
||
}
|
||
function computeColors(model) {
|
||
const result = [];
|
||
// Early validation for RGB and HSL
|
||
const initialValidationRegex = /\b(rgb|rgba|hsl|hsla)(\([0-9\s,.\%]*\))|(#)([A-Fa-f0-9]{3})\b|(#)([A-Fa-f0-9]{4})\b|(#)([A-Fa-f0-9]{6})\b|(#)([A-Fa-f0-9]{8})\b/gm;
|
||
const initialValidationMatches = _findMatches(model, initialValidationRegex);
|
||
// Potential colors have been found, validate the parameters
|
||
if (initialValidationMatches.length > 0) {
|
||
for (const initialMatch of initialValidationMatches) {
|
||
const initialCaptureGroups = initialMatch.filter(captureGroup => captureGroup !== undefined);
|
||
const colorScheme = initialCaptureGroups[1];
|
||
const colorParameters = initialCaptureGroups[2];
|
||
if (!colorParameters) {
|
||
continue;
|
||
}
|
||
let colorInformation;
|
||
if (colorScheme === 'rgb') {
|
||
const regexParameters = /^\(\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*,\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*,\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*\)$/gm;
|
||
colorInformation = _findRGBColorInformation(_findRange(model, initialMatch), _findMatches(colorParameters, regexParameters), false);
|
||
}
|
||
else if (colorScheme === 'rgba') {
|
||
const regexParameters = /^\(\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*,\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*,\s*(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])\s*,\s*(0[.][0-9]+|[.][0-9]+|[01][.]|[01])\s*\)$/gm;
|
||
colorInformation = _findRGBColorInformation(_findRange(model, initialMatch), _findMatches(colorParameters, regexParameters), true);
|
||
}
|
||
else if (colorScheme === 'hsl') {
|
||
const regexParameters = /^\(\s*(36[0]|3[0-5][0-9]|[12][0-9][0-9]|[1-9]?[0-9])\s*,\s*(100|\d{1,2}[.]\d*|\d{1,2})%\s*,\s*(100|\d{1,2}[.]\d*|\d{1,2})%\s*\)$/gm;
|
||
colorInformation = _findHSLColorInformation(_findRange(model, initialMatch), _findMatches(colorParameters, regexParameters), false);
|
||
}
|
||
else if (colorScheme === 'hsla') {
|
||
const regexParameters = /^\(\s*(36[0]|3[0-5][0-9]|[12][0-9][0-9]|[1-9]?[0-9])\s*,\s*(100|\d{1,2}[.]\d*|\d{1,2})%\s*,\s*(100|\d{1,2}[.]\d*|\d{1,2})%\s*,\s*(0[.][0-9]+|[.][0-9]+|[01][.]|[01])\s*\)$/gm;
|
||
colorInformation = _findHSLColorInformation(_findRange(model, initialMatch), _findMatches(colorParameters, regexParameters), true);
|
||
}
|
||
else if (colorScheme === '#') {
|
||
colorInformation = _findHexColorInformation(_findRange(model, initialMatch), colorScheme + colorParameters);
|
||
}
|
||
if (colorInformation) {
|
||
result.push(colorInformation);
|
||
}
|
||
}
|
||
}
|
||
return result;
|
||
}
|
||
/**
|
||
* Returns an array of all default document colors in the provided document
|
||
*/
|
||
function computeDefaultDocumentColors(model) {
|
||
if (!model || typeof model.getValue !== 'function' || typeof model.positionAt !== 'function') {
|
||
// Unknown caller!
|
||
return [];
|
||
}
|
||
return computeColors(model);
|
||
}
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[60/*vs/editor/common/languages/linkComputer*/], __M([0/*require*/,1/*exports*/,29/*vs/editor/common/core/characterClassifier*/]), function (require, exports, characterClassifier_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.LinkComputer = exports.StateMachine = void 0;
|
||
exports.computeLinks = computeLinks;
|
||
class Uint8Matrix {
|
||
constructor(rows, cols, defaultValue) {
|
||
const data = new Uint8Array(rows * cols);
|
||
for (let i = 0, len = rows * cols; i < len; i++) {
|
||
data[i] = defaultValue;
|
||
}
|
||
this._data = data;
|
||
this.rows = rows;
|
||
this.cols = cols;
|
||
}
|
||
get(row, col) {
|
||
return this._data[row * this.cols + col];
|
||
}
|
||
set(row, col, value) {
|
||
this._data[row * this.cols + col] = value;
|
||
}
|
||
}
|
||
class StateMachine {
|
||
constructor(edges) {
|
||
let maxCharCode = 0;
|
||
let maxState = 0 /* State.Invalid */;
|
||
for (let i = 0, len = edges.length; i < len; i++) {
|
||
const [from, chCode, to] = edges[i];
|
||
if (chCode > maxCharCode) {
|
||
maxCharCode = chCode;
|
||
}
|
||
if (from > maxState) {
|
||
maxState = from;
|
||
}
|
||
if (to > maxState) {
|
||
maxState = to;
|
||
}
|
||
}
|
||
maxCharCode++;
|
||
maxState++;
|
||
const states = new Uint8Matrix(maxState, maxCharCode, 0 /* State.Invalid */);
|
||
for (let i = 0, len = edges.length; i < len; i++) {
|
||
const [from, chCode, to] = edges[i];
|
||
states.set(from, chCode, to);
|
||
}
|
||
this._states = states;
|
||
this._maxCharCode = maxCharCode;
|
||
}
|
||
nextState(currentState, chCode) {
|
||
if (chCode < 0 || chCode >= this._maxCharCode) {
|
||
return 0 /* State.Invalid */;
|
||
}
|
||
return this._states.get(currentState, chCode);
|
||
}
|
||
}
|
||
exports.StateMachine = StateMachine;
|
||
// State machine for http:// or https:// or file://
|
||
let _stateMachine = null;
|
||
function getStateMachine() {
|
||
if (_stateMachine === null) {
|
||
_stateMachine = new StateMachine([
|
||
[1 /* State.Start */, 104 /* CharCode.h */, 2 /* State.H */],
|
||
[1 /* State.Start */, 72 /* CharCode.H */, 2 /* State.H */],
|
||
[1 /* State.Start */, 102 /* CharCode.f */, 6 /* State.F */],
|
||
[1 /* State.Start */, 70 /* CharCode.F */, 6 /* State.F */],
|
||
[2 /* State.H */, 116 /* CharCode.t */, 3 /* State.HT */],
|
||
[2 /* State.H */, 84 /* CharCode.T */, 3 /* State.HT */],
|
||
[3 /* State.HT */, 116 /* CharCode.t */, 4 /* State.HTT */],
|
||
[3 /* State.HT */, 84 /* CharCode.T */, 4 /* State.HTT */],
|
||
[4 /* State.HTT */, 112 /* CharCode.p */, 5 /* State.HTTP */],
|
||
[4 /* State.HTT */, 80 /* CharCode.P */, 5 /* State.HTTP */],
|
||
[5 /* State.HTTP */, 115 /* CharCode.s */, 9 /* State.BeforeColon */],
|
||
[5 /* State.HTTP */, 83 /* CharCode.S */, 9 /* State.BeforeColon */],
|
||
[5 /* State.HTTP */, 58 /* CharCode.Colon */, 10 /* State.AfterColon */],
|
||
[6 /* State.F */, 105 /* CharCode.i */, 7 /* State.FI */],
|
||
[6 /* State.F */, 73 /* CharCode.I */, 7 /* State.FI */],
|
||
[7 /* State.FI */, 108 /* CharCode.l */, 8 /* State.FIL */],
|
||
[7 /* State.FI */, 76 /* CharCode.L */, 8 /* State.FIL */],
|
||
[8 /* State.FIL */, 101 /* CharCode.e */, 9 /* State.BeforeColon */],
|
||
[8 /* State.FIL */, 69 /* CharCode.E */, 9 /* State.BeforeColon */],
|
||
[9 /* State.BeforeColon */, 58 /* CharCode.Colon */, 10 /* State.AfterColon */],
|
||
[10 /* State.AfterColon */, 47 /* CharCode.Slash */, 11 /* State.AlmostThere */],
|
||
[11 /* State.AlmostThere */, 47 /* CharCode.Slash */, 12 /* State.End */],
|
||
]);
|
||
}
|
||
return _stateMachine;
|
||
}
|
||
let _classifier = null;
|
||
function getClassifier() {
|
||
if (_classifier === null) {
|
||
_classifier = new characterClassifier_1.CharacterClassifier(0 /* CharacterClass.None */);
|
||
// allow-any-unicode-next-line
|
||
const FORCE_TERMINATION_CHARACTERS = ' \t<>\'\"、。。、,.:;‘〈「『〔([{「」}])〕』」〉’`~…';
|
||
for (let i = 0; i < FORCE_TERMINATION_CHARACTERS.length; i++) {
|
||
_classifier.set(FORCE_TERMINATION_CHARACTERS.charCodeAt(i), 1 /* CharacterClass.ForceTermination */);
|
||
}
|
||
const CANNOT_END_WITH_CHARACTERS = '.,;:';
|
||
for (let i = 0; i < CANNOT_END_WITH_CHARACTERS.length; i++) {
|
||
_classifier.set(CANNOT_END_WITH_CHARACTERS.charCodeAt(i), 2 /* CharacterClass.CannotEndIn */);
|
||
}
|
||
}
|
||
return _classifier;
|
||
}
|
||
class LinkComputer {
|
||
static _createLink(classifier, line, lineNumber, linkBeginIndex, linkEndIndex) {
|
||
// Do not allow to end link in certain characters...
|
||
let lastIncludedCharIndex = linkEndIndex - 1;
|
||
do {
|
||
const chCode = line.charCodeAt(lastIncludedCharIndex);
|
||
const chClass = classifier.get(chCode);
|
||
if (chClass !== 2 /* CharacterClass.CannotEndIn */) {
|
||
break;
|
||
}
|
||
lastIncludedCharIndex--;
|
||
} while (lastIncludedCharIndex > linkBeginIndex);
|
||
// Handle links enclosed in parens, square brackets and curlys.
|
||
if (linkBeginIndex > 0) {
|
||
const charCodeBeforeLink = line.charCodeAt(linkBeginIndex - 1);
|
||
const lastCharCodeInLink = line.charCodeAt(lastIncludedCharIndex);
|
||
if ((charCodeBeforeLink === 40 /* CharCode.OpenParen */ && lastCharCodeInLink === 41 /* CharCode.CloseParen */)
|
||
|| (charCodeBeforeLink === 91 /* CharCode.OpenSquareBracket */ && lastCharCodeInLink === 93 /* CharCode.CloseSquareBracket */)
|
||
|| (charCodeBeforeLink === 123 /* CharCode.OpenCurlyBrace */ && lastCharCodeInLink === 125 /* CharCode.CloseCurlyBrace */)) {
|
||
// Do not end in ) if ( is before the link start
|
||
// Do not end in ] if [ is before the link start
|
||
// Do not end in } if { is before the link start
|
||
lastIncludedCharIndex--;
|
||
}
|
||
}
|
||
return {
|
||
range: {
|
||
startLineNumber: lineNumber,
|
||
startColumn: linkBeginIndex + 1,
|
||
endLineNumber: lineNumber,
|
||
endColumn: lastIncludedCharIndex + 2
|
||
},
|
||
url: line.substring(linkBeginIndex, lastIncludedCharIndex + 1)
|
||
};
|
||
}
|
||
static computeLinks(model, stateMachine = getStateMachine()) {
|
||
const classifier = getClassifier();
|
||
const result = [];
|
||
for (let i = 1, lineCount = model.getLineCount(); i <= lineCount; i++) {
|
||
const line = model.getLineContent(i);
|
||
const len = line.length;
|
||
let j = 0;
|
||
let linkBeginIndex = 0;
|
||
let linkBeginChCode = 0;
|
||
let state = 1 /* State.Start */;
|
||
let hasOpenParens = false;
|
||
let hasOpenSquareBracket = false;
|
||
let inSquareBrackets = false;
|
||
let hasOpenCurlyBracket = false;
|
||
while (j < len) {
|
||
let resetStateMachine = false;
|
||
const chCode = line.charCodeAt(j);
|
||
if (state === 13 /* State.Accept */) {
|
||
let chClass;
|
||
switch (chCode) {
|
||
case 40 /* CharCode.OpenParen */:
|
||
hasOpenParens = true;
|
||
chClass = 0 /* CharacterClass.None */;
|
||
break;
|
||
case 41 /* CharCode.CloseParen */:
|
||
chClass = (hasOpenParens ? 0 /* CharacterClass.None */ : 1 /* CharacterClass.ForceTermination */);
|
||
break;
|
||
case 91 /* CharCode.OpenSquareBracket */:
|
||
inSquareBrackets = true;
|
||
hasOpenSquareBracket = true;
|
||
chClass = 0 /* CharacterClass.None */;
|
||
break;
|
||
case 93 /* CharCode.CloseSquareBracket */:
|
||
inSquareBrackets = false;
|
||
chClass = (hasOpenSquareBracket ? 0 /* CharacterClass.None */ : 1 /* CharacterClass.ForceTermination */);
|
||
break;
|
||
case 123 /* CharCode.OpenCurlyBrace */:
|
||
hasOpenCurlyBracket = true;
|
||
chClass = 0 /* CharacterClass.None */;
|
||
break;
|
||
case 125 /* CharCode.CloseCurlyBrace */:
|
||
chClass = (hasOpenCurlyBracket ? 0 /* CharacterClass.None */ : 1 /* CharacterClass.ForceTermination */);
|
||
break;
|
||
// The following three rules make it that ' or " or ` are allowed inside links
|
||
// only if the link is wrapped by some other quote character
|
||
case 39 /* CharCode.SingleQuote */:
|
||
case 34 /* CharCode.DoubleQuote */:
|
||
case 96 /* CharCode.BackTick */:
|
||
if (linkBeginChCode === chCode) {
|
||
chClass = 1 /* CharacterClass.ForceTermination */;
|
||
}
|
||
else if (linkBeginChCode === 39 /* CharCode.SingleQuote */ || linkBeginChCode === 34 /* CharCode.DoubleQuote */ || linkBeginChCode === 96 /* CharCode.BackTick */) {
|
||
chClass = 0 /* CharacterClass.None */;
|
||
}
|
||
else {
|
||
chClass = 1 /* CharacterClass.ForceTermination */;
|
||
}
|
||
break;
|
||
case 42 /* CharCode.Asterisk */:
|
||
// `*` terminates a link if the link began with `*`
|
||
chClass = (linkBeginChCode === 42 /* CharCode.Asterisk */) ? 1 /* CharacterClass.ForceTermination */ : 0 /* CharacterClass.None */;
|
||
break;
|
||
case 124 /* CharCode.Pipe */:
|
||
// `|` terminates a link if the link began with `|`
|
||
chClass = (linkBeginChCode === 124 /* CharCode.Pipe */) ? 1 /* CharacterClass.ForceTermination */ : 0 /* CharacterClass.None */;
|
||
break;
|
||
case 32 /* CharCode.Space */:
|
||
// ` ` allow space in between [ and ]
|
||
chClass = (inSquareBrackets ? 0 /* CharacterClass.None */ : 1 /* CharacterClass.ForceTermination */);
|
||
break;
|
||
default:
|
||
chClass = classifier.get(chCode);
|
||
}
|
||
// Check if character terminates link
|
||
if (chClass === 1 /* CharacterClass.ForceTermination */) {
|
||
result.push(LinkComputer._createLink(classifier, line, i, linkBeginIndex, j));
|
||
resetStateMachine = true;
|
||
}
|
||
}
|
||
else if (state === 12 /* State.End */) {
|
||
let chClass;
|
||
if (chCode === 91 /* CharCode.OpenSquareBracket */) {
|
||
// Allow for the authority part to contain ipv6 addresses which contain [ and ]
|
||
hasOpenSquareBracket = true;
|
||
chClass = 0 /* CharacterClass.None */;
|
||
}
|
||
else {
|
||
chClass = classifier.get(chCode);
|
||
}
|
||
// Check if character terminates link
|
||
if (chClass === 1 /* CharacterClass.ForceTermination */) {
|
||
resetStateMachine = true;
|
||
}
|
||
else {
|
||
state = 13 /* State.Accept */;
|
||
}
|
||
}
|
||
else {
|
||
state = stateMachine.nextState(state, chCode);
|
||
if (state === 0 /* State.Invalid */) {
|
||
resetStateMachine = true;
|
||
}
|
||
}
|
||
if (resetStateMachine) {
|
||
state = 1 /* State.Start */;
|
||
hasOpenParens = false;
|
||
hasOpenSquareBracket = false;
|
||
hasOpenCurlyBracket = false;
|
||
// Record where the link started
|
||
linkBeginIndex = j + 1;
|
||
linkBeginChCode = chCode;
|
||
}
|
||
j++;
|
||
}
|
||
if (state === 13 /* State.Accept */) {
|
||
result.push(LinkComputer._createLink(classifier, line, i, linkBeginIndex, len));
|
||
}
|
||
}
|
||
return result;
|
||
}
|
||
}
|
||
exports.LinkComputer = LinkComputer;
|
||
/**
|
||
* Returns an array of all links contains in the provided
|
||
* document. *Note* that this operation is computational
|
||
* expensive and should not run in the UI thread.
|
||
*/
|
||
function computeLinks(model) {
|
||
if (!model || typeof model.getLineCount !== 'function' || typeof model.getLineContent !== 'function') {
|
||
// Unknown caller!
|
||
return [];
|
||
}
|
||
return LinkComputer.computeLinks(model);
|
||
}
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[61/*vs/editor/common/languages/supports/inplaceReplaceSupport*/], __M([0/*require*/,1/*exports*/]), function (require, exports) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.BasicInplaceReplace = void 0;
|
||
class BasicInplaceReplace {
|
||
constructor() {
|
||
this._defaultValueSet = [
|
||
['true', 'false'],
|
||
['True', 'False'],
|
||
['Private', 'Public', 'Friend', 'ReadOnly', 'Partial', 'Protected', 'WriteOnly'],
|
||
['public', 'protected', 'private'],
|
||
];
|
||
}
|
||
static { this.INSTANCE = new BasicInplaceReplace(); }
|
||
navigateValueSet(range1, text1, range2, text2, up) {
|
||
if (range1 && text1) {
|
||
const result = this.doNavigateValueSet(text1, up);
|
||
if (result) {
|
||
return {
|
||
range: range1,
|
||
value: result
|
||
};
|
||
}
|
||
}
|
||
if (range2 && text2) {
|
||
const result = this.doNavigateValueSet(text2, up);
|
||
if (result) {
|
||
return {
|
||
range: range2,
|
||
value: result
|
||
};
|
||
}
|
||
}
|
||
return null;
|
||
}
|
||
doNavigateValueSet(text, up) {
|
||
const numberResult = this.numberReplace(text, up);
|
||
if (numberResult !== null) {
|
||
return numberResult;
|
||
}
|
||
return this.textReplace(text, up);
|
||
}
|
||
numberReplace(value, up) {
|
||
const precision = Math.pow(10, value.length - (value.lastIndexOf('.') + 1));
|
||
let n1 = Number(value);
|
||
const n2 = parseFloat(value);
|
||
if (!isNaN(n1) && !isNaN(n2) && n1 === n2) {
|
||
if (n1 === 0 && !up) {
|
||
return null; // don't do negative
|
||
// } else if(n1 === 9 && up) {
|
||
// return null; // don't insert 10 into a number
|
||
}
|
||
else {
|
||
n1 = Math.floor(n1 * precision);
|
||
n1 += up ? precision : -precision;
|
||
return String(n1 / precision);
|
||
}
|
||
}
|
||
return null;
|
||
}
|
||
textReplace(value, up) {
|
||
return this.valueSetsReplace(this._defaultValueSet, value, up);
|
||
}
|
||
valueSetsReplace(valueSets, value, up) {
|
||
let result = null;
|
||
for (let i = 0, len = valueSets.length; result === null && i < len; i++) {
|
||
result = this.valueSetReplace(valueSets[i], value, up);
|
||
}
|
||
return result;
|
||
}
|
||
valueSetReplace(valueSet, value, up) {
|
||
let idx = valueSet.indexOf(value);
|
||
if (idx >= 0) {
|
||
idx += up ? +1 : -1;
|
||
if (idx < 0) {
|
||
idx = valueSet.length - 1;
|
||
}
|
||
else {
|
||
idx %= valueSet.length;
|
||
}
|
||
return valueSet[idx];
|
||
}
|
||
return null;
|
||
}
|
||
}
|
||
exports.BasicInplaceReplace = BasicInplaceReplace;
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[62/*vs/editor/common/model*/], __M([0/*require*/,1/*exports*/,27/*vs/base/common/objects*/]), function (require, exports, objects_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.ApplyEditsResult = exports.SearchData = exports.ValidAnnotatedEditOperation = exports.FindMatch = exports.TextModelResolvedOptions = exports.InjectedTextCursorStops = exports.GlyphMarginLane = exports.OverviewRulerLane = void 0;
|
||
exports.isITextSnapshot = isITextSnapshot;
|
||
exports.shouldSynchronizeModel = shouldSynchronizeModel;
|
||
/**
|
||
* Vertical Lane in the overview ruler of the editor.
|
||
*/
|
||
var OverviewRulerLane;
|
||
(function (OverviewRulerLane) {
|
||
OverviewRulerLane[OverviewRulerLane["Left"] = 1] = "Left";
|
||
OverviewRulerLane[OverviewRulerLane["Center"] = 2] = "Center";
|
||
OverviewRulerLane[OverviewRulerLane["Right"] = 4] = "Right";
|
||
OverviewRulerLane[OverviewRulerLane["Full"] = 7] = "Full";
|
||
})(OverviewRulerLane || (exports.OverviewRulerLane = OverviewRulerLane = {}));
|
||
/**
|
||
* Vertical Lane in the glyph margin of the editor.
|
||
*/
|
||
var GlyphMarginLane;
|
||
(function (GlyphMarginLane) {
|
||
GlyphMarginLane[GlyphMarginLane["Left"] = 1] = "Left";
|
||
GlyphMarginLane[GlyphMarginLane["Center"] = 2] = "Center";
|
||
GlyphMarginLane[GlyphMarginLane["Right"] = 3] = "Right";
|
||
})(GlyphMarginLane || (exports.GlyphMarginLane = GlyphMarginLane = {}));
|
||
var InjectedTextCursorStops;
|
||
(function (InjectedTextCursorStops) {
|
||
InjectedTextCursorStops[InjectedTextCursorStops["Both"] = 0] = "Both";
|
||
InjectedTextCursorStops[InjectedTextCursorStops["Right"] = 1] = "Right";
|
||
InjectedTextCursorStops[InjectedTextCursorStops["Left"] = 2] = "Left";
|
||
InjectedTextCursorStops[InjectedTextCursorStops["None"] = 3] = "None";
|
||
})(InjectedTextCursorStops || (exports.InjectedTextCursorStops = InjectedTextCursorStops = {}));
|
||
class TextModelResolvedOptions {
|
||
get originalIndentSize() {
|
||
return this._indentSizeIsTabSize ? 'tabSize' : this.indentSize;
|
||
}
|
||
/**
|
||
* @internal
|
||
*/
|
||
constructor(src) {
|
||
this._textModelResolvedOptionsBrand = undefined;
|
||
this.tabSize = Math.max(1, src.tabSize | 0);
|
||
if (src.indentSize === 'tabSize') {
|
||
this.indentSize = this.tabSize;
|
||
this._indentSizeIsTabSize = true;
|
||
}
|
||
else {
|
||
this.indentSize = Math.max(1, src.indentSize | 0);
|
||
this._indentSizeIsTabSize = false;
|
||
}
|
||
this.insertSpaces = Boolean(src.insertSpaces);
|
||
this.defaultEOL = src.defaultEOL | 0;
|
||
this.trimAutoWhitespace = Boolean(src.trimAutoWhitespace);
|
||
this.bracketPairColorizationOptions = src.bracketPairColorizationOptions;
|
||
}
|
||
/**
|
||
* @internal
|
||
*/
|
||
equals(other) {
|
||
return (this.tabSize === other.tabSize
|
||
&& this._indentSizeIsTabSize === other._indentSizeIsTabSize
|
||
&& this.indentSize === other.indentSize
|
||
&& this.insertSpaces === other.insertSpaces
|
||
&& this.defaultEOL === other.defaultEOL
|
||
&& this.trimAutoWhitespace === other.trimAutoWhitespace
|
||
&& (0, objects_1.equals)(this.bracketPairColorizationOptions, other.bracketPairColorizationOptions));
|
||
}
|
||
/**
|
||
* @internal
|
||
*/
|
||
createChangeEvent(newOpts) {
|
||
return {
|
||
tabSize: this.tabSize !== newOpts.tabSize,
|
||
indentSize: this.indentSize !== newOpts.indentSize,
|
||
insertSpaces: this.insertSpaces !== newOpts.insertSpaces,
|
||
trimAutoWhitespace: this.trimAutoWhitespace !== newOpts.trimAutoWhitespace,
|
||
};
|
||
}
|
||
}
|
||
exports.TextModelResolvedOptions = TextModelResolvedOptions;
|
||
class FindMatch {
|
||
/**
|
||
* @internal
|
||
*/
|
||
constructor(range, matches) {
|
||
this._findMatchBrand = undefined;
|
||
this.range = range;
|
||
this.matches = matches;
|
||
}
|
||
}
|
||
exports.FindMatch = FindMatch;
|
||
/**
|
||
* @internal
|
||
*/
|
||
function isITextSnapshot(obj) {
|
||
return (obj && typeof obj.read === 'function');
|
||
}
|
||
/**
|
||
* @internal
|
||
*/
|
||
class ValidAnnotatedEditOperation {
|
||
constructor(identifier, range, text, forceMoveMarkers, isAutoWhitespaceEdit, _isTracked) {
|
||
this.identifier = identifier;
|
||
this.range = range;
|
||
this.text = text;
|
||
this.forceMoveMarkers = forceMoveMarkers;
|
||
this.isAutoWhitespaceEdit = isAutoWhitespaceEdit;
|
||
this._isTracked = _isTracked;
|
||
}
|
||
}
|
||
exports.ValidAnnotatedEditOperation = ValidAnnotatedEditOperation;
|
||
/**
|
||
* @internal
|
||
*/
|
||
class SearchData {
|
||
constructor(regex, wordSeparators, simpleSearch) {
|
||
this.regex = regex;
|
||
this.wordSeparators = wordSeparators;
|
||
this.simpleSearch = simpleSearch;
|
||
}
|
||
}
|
||
exports.SearchData = SearchData;
|
||
/**
|
||
* @internal
|
||
*/
|
||
class ApplyEditsResult {
|
||
constructor(reverseEdits, changes, trimAutoWhitespaceLineNumbers) {
|
||
this.reverseEdits = reverseEdits;
|
||
this.changes = changes;
|
||
this.trimAutoWhitespaceLineNumbers = trimAutoWhitespaceLineNumbers;
|
||
}
|
||
}
|
||
exports.ApplyEditsResult = ApplyEditsResult;
|
||
/**
|
||
* @internal
|
||
*/
|
||
function shouldSynchronizeModel(model) {
|
||
return (!model.isTooLargeForSyncing() && !model.isForSimpleWidget);
|
||
}
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[63/*vs/editor/common/model/prefixSumComputer*/], __M([0/*require*/,1/*exports*/,7/*vs/base/common/arrays*/,28/*vs/base/common/uint*/]), function (require, exports, arrays_1, uint_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.PrefixSumIndexOfResult = exports.ConstantTimePrefixSumComputer = exports.PrefixSumComputer = void 0;
|
||
class PrefixSumComputer {
|
||
constructor(values) {
|
||
this.values = values;
|
||
this.prefixSum = new Uint32Array(values.length);
|
||
this.prefixSumValidIndex = new Int32Array(1);
|
||
this.prefixSumValidIndex[0] = -1;
|
||
}
|
||
insertValues(insertIndex, insertValues) {
|
||
insertIndex = (0, uint_1.toUint32)(insertIndex);
|
||
const oldValues = this.values;
|
||
const oldPrefixSum = this.prefixSum;
|
||
const insertValuesLen = insertValues.length;
|
||
if (insertValuesLen === 0) {
|
||
return false;
|
||
}
|
||
this.values = new Uint32Array(oldValues.length + insertValuesLen);
|
||
this.values.set(oldValues.subarray(0, insertIndex), 0);
|
||
this.values.set(oldValues.subarray(insertIndex), insertIndex + insertValuesLen);
|
||
this.values.set(insertValues, insertIndex);
|
||
if (insertIndex - 1 < this.prefixSumValidIndex[0]) {
|
||
this.prefixSumValidIndex[0] = insertIndex - 1;
|
||
}
|
||
this.prefixSum = new Uint32Array(this.values.length);
|
||
if (this.prefixSumValidIndex[0] >= 0) {
|
||
this.prefixSum.set(oldPrefixSum.subarray(0, this.prefixSumValidIndex[0] + 1));
|
||
}
|
||
return true;
|
||
}
|
||
setValue(index, value) {
|
||
index = (0, uint_1.toUint32)(index);
|
||
value = (0, uint_1.toUint32)(value);
|
||
if (this.values[index] === value) {
|
||
return false;
|
||
}
|
||
this.values[index] = value;
|
||
if (index - 1 < this.prefixSumValidIndex[0]) {
|
||
this.prefixSumValidIndex[0] = index - 1;
|
||
}
|
||
return true;
|
||
}
|
||
removeValues(startIndex, count) {
|
||
startIndex = (0, uint_1.toUint32)(startIndex);
|
||
count = (0, uint_1.toUint32)(count);
|
||
const oldValues = this.values;
|
||
const oldPrefixSum = this.prefixSum;
|
||
if (startIndex >= oldValues.length) {
|
||
return false;
|
||
}
|
||
const maxCount = oldValues.length - startIndex;
|
||
if (count >= maxCount) {
|
||
count = maxCount;
|
||
}
|
||
if (count === 0) {
|
||
return false;
|
||
}
|
||
this.values = new Uint32Array(oldValues.length - count);
|
||
this.values.set(oldValues.subarray(0, startIndex), 0);
|
||
this.values.set(oldValues.subarray(startIndex + count), startIndex);
|
||
this.prefixSum = new Uint32Array(this.values.length);
|
||
if (startIndex - 1 < this.prefixSumValidIndex[0]) {
|
||
this.prefixSumValidIndex[0] = startIndex - 1;
|
||
}
|
||
if (this.prefixSumValidIndex[0] >= 0) {
|
||
this.prefixSum.set(oldPrefixSum.subarray(0, this.prefixSumValidIndex[0] + 1));
|
||
}
|
||
return true;
|
||
}
|
||
getTotalSum() {
|
||
if (this.values.length === 0) {
|
||
return 0;
|
||
}
|
||
return this._getPrefixSum(this.values.length - 1);
|
||
}
|
||
/**
|
||
* Returns the sum of the first `index + 1` many items.
|
||
* @returns `SUM(0 <= j <= index, values[j])`.
|
||
*/
|
||
getPrefixSum(index) {
|
||
if (index < 0) {
|
||
return 0;
|
||
}
|
||
index = (0, uint_1.toUint32)(index);
|
||
return this._getPrefixSum(index);
|
||
}
|
||
_getPrefixSum(index) {
|
||
if (index <= this.prefixSumValidIndex[0]) {
|
||
return this.prefixSum[index];
|
||
}
|
||
let startIndex = this.prefixSumValidIndex[0] + 1;
|
||
if (startIndex === 0) {
|
||
this.prefixSum[0] = this.values[0];
|
||
startIndex++;
|
||
}
|
||
if (index >= this.values.length) {
|
||
index = this.values.length - 1;
|
||
}
|
||
for (let i = startIndex; i <= index; i++) {
|
||
this.prefixSum[i] = this.prefixSum[i - 1] + this.values[i];
|
||
}
|
||
this.prefixSumValidIndex[0] = Math.max(this.prefixSumValidIndex[0], index);
|
||
return this.prefixSum[index];
|
||
}
|
||
getIndexOf(sum) {
|
||
sum = Math.floor(sum);
|
||
// Compute all sums (to get a fully valid prefixSum)
|
||
this.getTotalSum();
|
||
let low = 0;
|
||
let high = this.values.length - 1;
|
||
let mid = 0;
|
||
let midStop = 0;
|
||
let midStart = 0;
|
||
while (low <= high) {
|
||
mid = low + ((high - low) / 2) | 0;
|
||
midStop = this.prefixSum[mid];
|
||
midStart = midStop - this.values[mid];
|
||
if (sum < midStart) {
|
||
high = mid - 1;
|
||
}
|
||
else if (sum >= midStop) {
|
||
low = mid + 1;
|
||
}
|
||
else {
|
||
break;
|
||
}
|
||
}
|
||
return new PrefixSumIndexOfResult(mid, sum - midStart);
|
||
}
|
||
}
|
||
exports.PrefixSumComputer = PrefixSumComputer;
|
||
/**
|
||
* {@link getIndexOf} has an amortized runtime complexity of O(1).
|
||
*
|
||
* ({@link PrefixSumComputer.getIndexOf} is just O(log n))
|
||
*/
|
||
class ConstantTimePrefixSumComputer {
|
||
constructor(values) {
|
||
this._values = values;
|
||
this._isValid = false;
|
||
this._validEndIndex = -1;
|
||
this._prefixSum = [];
|
||
this._indexBySum = [];
|
||
}
|
||
/**
|
||
* @returns SUM(0 <= j < values.length, values[j])
|
||
*/
|
||
getTotalSum() {
|
||
this._ensureValid();
|
||
return this._indexBySum.length;
|
||
}
|
||
/**
|
||
* Returns the sum of the first `count` many items.
|
||
* @returns `SUM(0 <= j < count, values[j])`.
|
||
*/
|
||
getPrefixSum(count) {
|
||
this._ensureValid();
|
||
if (count === 0) {
|
||
return 0;
|
||
}
|
||
return this._prefixSum[count - 1];
|
||
}
|
||
/**
|
||
* @returns `result`, such that `getPrefixSum(result.index) + result.remainder = sum`
|
||
*/
|
||
getIndexOf(sum) {
|
||
this._ensureValid();
|
||
const idx = this._indexBySum[sum];
|
||
const viewLinesAbove = idx > 0 ? this._prefixSum[idx - 1] : 0;
|
||
return new PrefixSumIndexOfResult(idx, sum - viewLinesAbove);
|
||
}
|
||
removeValues(start, deleteCount) {
|
||
this._values.splice(start, deleteCount);
|
||
this._invalidate(start);
|
||
}
|
||
insertValues(insertIndex, insertArr) {
|
||
this._values = (0, arrays_1.arrayInsert)(this._values, insertIndex, insertArr);
|
||
this._invalidate(insertIndex);
|
||
}
|
||
_invalidate(index) {
|
||
this._isValid = false;
|
||
this._validEndIndex = Math.min(this._validEndIndex, index - 1);
|
||
}
|
||
_ensureValid() {
|
||
if (this._isValid) {
|
||
return;
|
||
}
|
||
for (let i = this._validEndIndex + 1, len = this._values.length; i < len; i++) {
|
||
const value = this._values[i];
|
||
const sumAbove = i > 0 ? this._prefixSum[i - 1] : 0;
|
||
this._prefixSum[i] = sumAbove + value;
|
||
for (let j = 0; j < value; j++) {
|
||
this._indexBySum[sumAbove + j] = i;
|
||
}
|
||
}
|
||
// trim things
|
||
this._prefixSum.length = this._values.length;
|
||
this._indexBySum.length = this._prefixSum[this._prefixSum.length - 1];
|
||
// mark as valid
|
||
this._isValid = true;
|
||
this._validEndIndex = this._values.length - 1;
|
||
}
|
||
setValue(index, value) {
|
||
if (this._values[index] === value) {
|
||
// no change
|
||
return;
|
||
}
|
||
this._values[index] = value;
|
||
this._invalidate(index);
|
||
}
|
||
}
|
||
exports.ConstantTimePrefixSumComputer = ConstantTimePrefixSumComputer;
|
||
class PrefixSumIndexOfResult {
|
||
constructor(index, remainder) {
|
||
this.index = index;
|
||
this.remainder = remainder;
|
||
this._prefixSumIndexOfResultBrand = undefined;
|
||
this.index = index;
|
||
this.remainder = remainder;
|
||
}
|
||
}
|
||
exports.PrefixSumIndexOfResult = PrefixSumIndexOfResult;
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[64/*vs/editor/common/model/mirrorTextModel*/], __M([0/*require*/,1/*exports*/,6/*vs/base/common/strings*/,4/*vs/editor/common/core/position*/,63/*vs/editor/common/model/prefixSumComputer*/]), function (require, exports, strings_1, position_1, prefixSumComputer_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.MirrorTextModel = void 0;
|
||
class MirrorTextModel {
|
||
constructor(uri, lines, eol, versionId) {
|
||
this._uri = uri;
|
||
this._lines = lines;
|
||
this._eol = eol;
|
||
this._versionId = versionId;
|
||
this._lineStarts = null;
|
||
this._cachedTextValue = null;
|
||
}
|
||
dispose() {
|
||
this._lines.length = 0;
|
||
}
|
||
get version() {
|
||
return this._versionId;
|
||
}
|
||
getText() {
|
||
if (this._cachedTextValue === null) {
|
||
this._cachedTextValue = this._lines.join(this._eol);
|
||
}
|
||
return this._cachedTextValue;
|
||
}
|
||
onEvents(e) {
|
||
if (e.eol && e.eol !== this._eol) {
|
||
this._eol = e.eol;
|
||
this._lineStarts = null;
|
||
}
|
||
// Update my lines
|
||
const changes = e.changes;
|
||
for (const change of changes) {
|
||
this._acceptDeleteRange(change.range);
|
||
this._acceptInsertText(new position_1.Position(change.range.startLineNumber, change.range.startColumn), change.text);
|
||
}
|
||
this._versionId = e.versionId;
|
||
this._cachedTextValue = null;
|
||
}
|
||
_ensureLineStarts() {
|
||
if (!this._lineStarts) {
|
||
const eolLength = this._eol.length;
|
||
const linesLength = this._lines.length;
|
||
const lineStartValues = new Uint32Array(linesLength);
|
||
for (let i = 0; i < linesLength; i++) {
|
||
lineStartValues[i] = this._lines[i].length + eolLength;
|
||
}
|
||
this._lineStarts = new prefixSumComputer_1.PrefixSumComputer(lineStartValues);
|
||
}
|
||
}
|
||
/**
|
||
* All changes to a line's text go through this method
|
||
*/
|
||
_setLineText(lineIndex, newValue) {
|
||
this._lines[lineIndex] = newValue;
|
||
if (this._lineStarts) {
|
||
// update prefix sum
|
||
this._lineStarts.setValue(lineIndex, this._lines[lineIndex].length + this._eol.length);
|
||
}
|
||
}
|
||
_acceptDeleteRange(range) {
|
||
if (range.startLineNumber === range.endLineNumber) {
|
||
if (range.startColumn === range.endColumn) {
|
||
// Nothing to delete
|
||
return;
|
||
}
|
||
// Delete text on the affected line
|
||
this._setLineText(range.startLineNumber - 1, this._lines[range.startLineNumber - 1].substring(0, range.startColumn - 1)
|
||
+ this._lines[range.startLineNumber - 1].substring(range.endColumn - 1));
|
||
return;
|
||
}
|
||
// Take remaining text on last line and append it to remaining text on first line
|
||
this._setLineText(range.startLineNumber - 1, this._lines[range.startLineNumber - 1].substring(0, range.startColumn - 1)
|
||
+ this._lines[range.endLineNumber - 1].substring(range.endColumn - 1));
|
||
// Delete middle lines
|
||
this._lines.splice(range.startLineNumber, range.endLineNumber - range.startLineNumber);
|
||
if (this._lineStarts) {
|
||
// update prefix sum
|
||
this._lineStarts.removeValues(range.startLineNumber, range.endLineNumber - range.startLineNumber);
|
||
}
|
||
}
|
||
_acceptInsertText(position, insertText) {
|
||
if (insertText.length === 0) {
|
||
// Nothing to insert
|
||
return;
|
||
}
|
||
const insertLines = (0, strings_1.splitLines)(insertText);
|
||
if (insertLines.length === 1) {
|
||
// Inserting text on one line
|
||
this._setLineText(position.lineNumber - 1, this._lines[position.lineNumber - 1].substring(0, position.column - 1)
|
||
+ insertLines[0]
|
||
+ this._lines[position.lineNumber - 1].substring(position.column - 1));
|
||
return;
|
||
}
|
||
// Append overflowing text from first line to the end of text to insert
|
||
insertLines[insertLines.length - 1] += this._lines[position.lineNumber - 1].substring(position.column - 1);
|
||
// Delete overflowing text from first line and insert text on first line
|
||
this._setLineText(position.lineNumber - 1, this._lines[position.lineNumber - 1].substring(0, position.column - 1)
|
||
+ insertLines[0]);
|
||
// Insert new lines & store lengths
|
||
const newLengths = new Uint32Array(insertLines.length - 1);
|
||
for (let i = 1; i < insertLines.length; i++) {
|
||
this._lines.splice(position.lineNumber + i - 1, 0, insertLines[i]);
|
||
newLengths[i - 1] = insertLines[i].length + this._eol.length;
|
||
}
|
||
if (this._lineStarts) {
|
||
// update prefix sum
|
||
this._lineStarts.insertValues(position.lineNumber, newLengths);
|
||
}
|
||
}
|
||
}
|
||
exports.MirrorTextModel = MirrorTextModel;
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[65/*vs/editor/common/model/textModelSearch*/], __M([0/*require*/,1/*exports*/,6/*vs/base/common/strings*/,51/*vs/editor/common/core/wordCharacterClassifier*/,4/*vs/editor/common/core/position*/,2/*vs/editor/common/core/range*/,62/*vs/editor/common/model*/]), function (require, exports, strings, wordCharacterClassifier_1, position_1, range_1, model_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.Searcher = exports.TextModelSearch = exports.SearchParams = void 0;
|
||
exports.isMultilineRegexSource = isMultilineRegexSource;
|
||
exports.createFindMatch = createFindMatch;
|
||
exports.isValidMatch = isValidMatch;
|
||
const LIMIT_FIND_COUNT = 999;
|
||
class SearchParams {
|
||
constructor(searchString, isRegex, matchCase, wordSeparators) {
|
||
this.searchString = searchString;
|
||
this.isRegex = isRegex;
|
||
this.matchCase = matchCase;
|
||
this.wordSeparators = wordSeparators;
|
||
}
|
||
parseSearchRequest() {
|
||
if (this.searchString === '') {
|
||
return null;
|
||
}
|
||
// Try to create a RegExp out of the params
|
||
let multiline;
|
||
if (this.isRegex) {
|
||
multiline = isMultilineRegexSource(this.searchString);
|
||
}
|
||
else {
|
||
multiline = (this.searchString.indexOf('\n') >= 0);
|
||
}
|
||
let regex = null;
|
||
try {
|
||
regex = strings.createRegExp(this.searchString, this.isRegex, {
|
||
matchCase: this.matchCase,
|
||
wholeWord: false,
|
||
multiline: multiline,
|
||
global: true,
|
||
unicode: true
|
||
});
|
||
}
|
||
catch (err) {
|
||
return null;
|
||
}
|
||
if (!regex) {
|
||
return null;
|
||
}
|
||
let canUseSimpleSearch = (!this.isRegex && !multiline);
|
||
if (canUseSimpleSearch && this.searchString.toLowerCase() !== this.searchString.toUpperCase()) {
|
||
// casing might make a difference
|
||
canUseSimpleSearch = this.matchCase;
|
||
}
|
||
return new model_1.SearchData(regex, this.wordSeparators ? (0, wordCharacterClassifier_1.getMapForWordSeparators)(this.wordSeparators, []) : null, canUseSimpleSearch ? this.searchString : null);
|
||
}
|
||
}
|
||
exports.SearchParams = SearchParams;
|
||
function isMultilineRegexSource(searchString) {
|
||
if (!searchString || searchString.length === 0) {
|
||
return false;
|
||
}
|
||
for (let i = 0, len = searchString.length; i < len; i++) {
|
||
const chCode = searchString.charCodeAt(i);
|
||
if (chCode === 10 /* CharCode.LineFeed */) {
|
||
return true;
|
||
}
|
||
if (chCode === 92 /* CharCode.Backslash */) {
|
||
// move to next char
|
||
i++;
|
||
if (i >= len) {
|
||
// string ends with a \
|
||
break;
|
||
}
|
||
const nextChCode = searchString.charCodeAt(i);
|
||
if (nextChCode === 110 /* CharCode.n */ || nextChCode === 114 /* CharCode.r */ || nextChCode === 87 /* CharCode.W */) {
|
||
return true;
|
||
}
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
function createFindMatch(range, rawMatches, captureMatches) {
|
||
if (!captureMatches) {
|
||
return new model_1.FindMatch(range, null);
|
||
}
|
||
const matches = [];
|
||
for (let i = 0, len = rawMatches.length; i < len; i++) {
|
||
matches[i] = rawMatches[i];
|
||
}
|
||
return new model_1.FindMatch(range, matches);
|
||
}
|
||
class LineFeedCounter {
|
||
constructor(text) {
|
||
const lineFeedsOffsets = [];
|
||
let lineFeedsOffsetsLen = 0;
|
||
for (let i = 0, textLen = text.length; i < textLen; i++) {
|
||
if (text.charCodeAt(i) === 10 /* CharCode.LineFeed */) {
|
||
lineFeedsOffsets[lineFeedsOffsetsLen++] = i;
|
||
}
|
||
}
|
||
this._lineFeedsOffsets = lineFeedsOffsets;
|
||
}
|
||
findLineFeedCountBeforeOffset(offset) {
|
||
const lineFeedsOffsets = this._lineFeedsOffsets;
|
||
let min = 0;
|
||
let max = lineFeedsOffsets.length - 1;
|
||
if (max === -1) {
|
||
// no line feeds
|
||
return 0;
|
||
}
|
||
if (offset <= lineFeedsOffsets[0]) {
|
||
// before first line feed
|
||
return 0;
|
||
}
|
||
while (min < max) {
|
||
const mid = min + ((max - min) / 2 >> 0);
|
||
if (lineFeedsOffsets[mid] >= offset) {
|
||
max = mid - 1;
|
||
}
|
||
else {
|
||
if (lineFeedsOffsets[mid + 1] >= offset) {
|
||
// bingo!
|
||
min = mid;
|
||
max = mid;
|
||
}
|
||
else {
|
||
min = mid + 1;
|
||
}
|
||
}
|
||
}
|
||
return min + 1;
|
||
}
|
||
}
|
||
class TextModelSearch {
|
||
static findMatches(model, searchParams, searchRange, captureMatches, limitResultCount) {
|
||
const searchData = searchParams.parseSearchRequest();
|
||
if (!searchData) {
|
||
return [];
|
||
}
|
||
if (searchData.regex.multiline) {
|
||
return this._doFindMatchesMultiline(model, searchRange, new Searcher(searchData.wordSeparators, searchData.regex), captureMatches, limitResultCount);
|
||
}
|
||
return this._doFindMatchesLineByLine(model, searchRange, searchData, captureMatches, limitResultCount);
|
||
}
|
||
/**
|
||
* Multiline search always executes on the lines concatenated with \n.
|
||
* We must therefore compensate for the count of \n in case the model is CRLF
|
||
*/
|
||
static _getMultilineMatchRange(model, deltaOffset, text, lfCounter, matchIndex, match0) {
|
||
let startOffset;
|
||
let lineFeedCountBeforeMatch = 0;
|
||
if (lfCounter) {
|
||
lineFeedCountBeforeMatch = lfCounter.findLineFeedCountBeforeOffset(matchIndex);
|
||
startOffset = deltaOffset + matchIndex + lineFeedCountBeforeMatch /* add as many \r as there were \n */;
|
||
}
|
||
else {
|
||
startOffset = deltaOffset + matchIndex;
|
||
}
|
||
let endOffset;
|
||
if (lfCounter) {
|
||
const lineFeedCountBeforeEndOfMatch = lfCounter.findLineFeedCountBeforeOffset(matchIndex + match0.length);
|
||
const lineFeedCountInMatch = lineFeedCountBeforeEndOfMatch - lineFeedCountBeforeMatch;
|
||
endOffset = startOffset + match0.length + lineFeedCountInMatch /* add as many \r as there were \n */;
|
||
}
|
||
else {
|
||
endOffset = startOffset + match0.length;
|
||
}
|
||
const startPosition = model.getPositionAt(startOffset);
|
||
const endPosition = model.getPositionAt(endOffset);
|
||
return new range_1.Range(startPosition.lineNumber, startPosition.column, endPosition.lineNumber, endPosition.column);
|
||
}
|
||
static _doFindMatchesMultiline(model, searchRange, searcher, captureMatches, limitResultCount) {
|
||
const deltaOffset = model.getOffsetAt(searchRange.getStartPosition());
|
||
// We always execute multiline search over the lines joined with \n
|
||
// This makes it that \n will match the EOL for both CRLF and LF models
|
||
// We compensate for offset errors in `_getMultilineMatchRange`
|
||
const text = model.getValueInRange(searchRange, 1 /* EndOfLinePreference.LF */);
|
||
const lfCounter = (model.getEOL() === '\r\n' ? new LineFeedCounter(text) : null);
|
||
const result = [];
|
||
let counter = 0;
|
||
let m;
|
||
searcher.reset(0);
|
||
while ((m = searcher.next(text))) {
|
||
result[counter++] = createFindMatch(this._getMultilineMatchRange(model, deltaOffset, text, lfCounter, m.index, m[0]), m, captureMatches);
|
||
if (counter >= limitResultCount) {
|
||
return result;
|
||
}
|
||
}
|
||
return result;
|
||
}
|
||
static _doFindMatchesLineByLine(model, searchRange, searchData, captureMatches, limitResultCount) {
|
||
const result = [];
|
||
let resultLen = 0;
|
||
// Early case for a search range that starts & stops on the same line number
|
||
if (searchRange.startLineNumber === searchRange.endLineNumber) {
|
||
const text = model.getLineContent(searchRange.startLineNumber).substring(searchRange.startColumn - 1, searchRange.endColumn - 1);
|
||
resultLen = this._findMatchesInLine(searchData, text, searchRange.startLineNumber, searchRange.startColumn - 1, resultLen, result, captureMatches, limitResultCount);
|
||
return result;
|
||
}
|
||
// Collect results from first line
|
||
const text = model.getLineContent(searchRange.startLineNumber).substring(searchRange.startColumn - 1);
|
||
resultLen = this._findMatchesInLine(searchData, text, searchRange.startLineNumber, searchRange.startColumn - 1, resultLen, result, captureMatches, limitResultCount);
|
||
// Collect results from middle lines
|
||
for (let lineNumber = searchRange.startLineNumber + 1; lineNumber < searchRange.endLineNumber && resultLen < limitResultCount; lineNumber++) {
|
||
resultLen = this._findMatchesInLine(searchData, model.getLineContent(lineNumber), lineNumber, 0, resultLen, result, captureMatches, limitResultCount);
|
||
}
|
||
// Collect results from last line
|
||
if (resultLen < limitResultCount) {
|
||
const text = model.getLineContent(searchRange.endLineNumber).substring(0, searchRange.endColumn - 1);
|
||
resultLen = this._findMatchesInLine(searchData, text, searchRange.endLineNumber, 0, resultLen, result, captureMatches, limitResultCount);
|
||
}
|
||
return result;
|
||
}
|
||
static _findMatchesInLine(searchData, text, lineNumber, deltaOffset, resultLen, result, captureMatches, limitResultCount) {
|
||
const wordSeparators = searchData.wordSeparators;
|
||
if (!captureMatches && searchData.simpleSearch) {
|
||
const searchString = searchData.simpleSearch;
|
||
const searchStringLen = searchString.length;
|
||
const textLength = text.length;
|
||
let lastMatchIndex = -searchStringLen;
|
||
while ((lastMatchIndex = text.indexOf(searchString, lastMatchIndex + searchStringLen)) !== -1) {
|
||
if (!wordSeparators || isValidMatch(wordSeparators, text, textLength, lastMatchIndex, searchStringLen)) {
|
||
result[resultLen++] = new model_1.FindMatch(new range_1.Range(lineNumber, lastMatchIndex + 1 + deltaOffset, lineNumber, lastMatchIndex + 1 + searchStringLen + deltaOffset), null);
|
||
if (resultLen >= limitResultCount) {
|
||
return resultLen;
|
||
}
|
||
}
|
||
}
|
||
return resultLen;
|
||
}
|
||
const searcher = new Searcher(searchData.wordSeparators, searchData.regex);
|
||
let m;
|
||
// Reset regex to search from the beginning
|
||
searcher.reset(0);
|
||
do {
|
||
m = searcher.next(text);
|
||
if (m) {
|
||
result[resultLen++] = createFindMatch(new range_1.Range(lineNumber, m.index + 1 + deltaOffset, lineNumber, m.index + 1 + m[0].length + deltaOffset), m, captureMatches);
|
||
if (resultLen >= limitResultCount) {
|
||
return resultLen;
|
||
}
|
||
}
|
||
} while (m);
|
||
return resultLen;
|
||
}
|
||
static findNextMatch(model, searchParams, searchStart, captureMatches) {
|
||
const searchData = searchParams.parseSearchRequest();
|
||
if (!searchData) {
|
||
return null;
|
||
}
|
||
const searcher = new Searcher(searchData.wordSeparators, searchData.regex);
|
||
if (searchData.regex.multiline) {
|
||
return this._doFindNextMatchMultiline(model, searchStart, searcher, captureMatches);
|
||
}
|
||
return this._doFindNextMatchLineByLine(model, searchStart, searcher, captureMatches);
|
||
}
|
||
static _doFindNextMatchMultiline(model, searchStart, searcher, captureMatches) {
|
||
const searchTextStart = new position_1.Position(searchStart.lineNumber, 1);
|
||
const deltaOffset = model.getOffsetAt(searchTextStart);
|
||
const lineCount = model.getLineCount();
|
||
// We always execute multiline search over the lines joined with \n
|
||
// This makes it that \n will match the EOL for both CRLF and LF models
|
||
// We compensate for offset errors in `_getMultilineMatchRange`
|
||
const text = model.getValueInRange(new range_1.Range(searchTextStart.lineNumber, searchTextStart.column, lineCount, model.getLineMaxColumn(lineCount)), 1 /* EndOfLinePreference.LF */);
|
||
const lfCounter = (model.getEOL() === '\r\n' ? new LineFeedCounter(text) : null);
|
||
searcher.reset(searchStart.column - 1);
|
||
const m = searcher.next(text);
|
||
if (m) {
|
||
return createFindMatch(this._getMultilineMatchRange(model, deltaOffset, text, lfCounter, m.index, m[0]), m, captureMatches);
|
||
}
|
||
if (searchStart.lineNumber !== 1 || searchStart.column !== 1) {
|
||
// Try again from the top
|
||
return this._doFindNextMatchMultiline(model, new position_1.Position(1, 1), searcher, captureMatches);
|
||
}
|
||
return null;
|
||
}
|
||
static _doFindNextMatchLineByLine(model, searchStart, searcher, captureMatches) {
|
||
const lineCount = model.getLineCount();
|
||
const startLineNumber = searchStart.lineNumber;
|
||
// Look in first line
|
||
const text = model.getLineContent(startLineNumber);
|
||
const r = this._findFirstMatchInLine(searcher, text, startLineNumber, searchStart.column, captureMatches);
|
||
if (r) {
|
||
return r;
|
||
}
|
||
for (let i = 1; i <= lineCount; i++) {
|
||
const lineIndex = (startLineNumber + i - 1) % lineCount;
|
||
const text = model.getLineContent(lineIndex + 1);
|
||
const r = this._findFirstMatchInLine(searcher, text, lineIndex + 1, 1, captureMatches);
|
||
if (r) {
|
||
return r;
|
||
}
|
||
}
|
||
return null;
|
||
}
|
||
static _findFirstMatchInLine(searcher, text, lineNumber, fromColumn, captureMatches) {
|
||
// Set regex to search from column
|
||
searcher.reset(fromColumn - 1);
|
||
const m = searcher.next(text);
|
||
if (m) {
|
||
return createFindMatch(new range_1.Range(lineNumber, m.index + 1, lineNumber, m.index + 1 + m[0].length), m, captureMatches);
|
||
}
|
||
return null;
|
||
}
|
||
static findPreviousMatch(model, searchParams, searchStart, captureMatches) {
|
||
const searchData = searchParams.parseSearchRequest();
|
||
if (!searchData) {
|
||
return null;
|
||
}
|
||
const searcher = new Searcher(searchData.wordSeparators, searchData.regex);
|
||
if (searchData.regex.multiline) {
|
||
return this._doFindPreviousMatchMultiline(model, searchStart, searcher, captureMatches);
|
||
}
|
||
return this._doFindPreviousMatchLineByLine(model, searchStart, searcher, captureMatches);
|
||
}
|
||
static _doFindPreviousMatchMultiline(model, searchStart, searcher, captureMatches) {
|
||
const matches = this._doFindMatchesMultiline(model, new range_1.Range(1, 1, searchStart.lineNumber, searchStart.column), searcher, captureMatches, 10 * LIMIT_FIND_COUNT);
|
||
if (matches.length > 0) {
|
||
return matches[matches.length - 1];
|
||
}
|
||
const lineCount = model.getLineCount();
|
||
if (searchStart.lineNumber !== lineCount || searchStart.column !== model.getLineMaxColumn(lineCount)) {
|
||
// Try again with all content
|
||
return this._doFindPreviousMatchMultiline(model, new position_1.Position(lineCount, model.getLineMaxColumn(lineCount)), searcher, captureMatches);
|
||
}
|
||
return null;
|
||
}
|
||
static _doFindPreviousMatchLineByLine(model, searchStart, searcher, captureMatches) {
|
||
const lineCount = model.getLineCount();
|
||
const startLineNumber = searchStart.lineNumber;
|
||
// Look in first line
|
||
const text = model.getLineContent(startLineNumber).substring(0, searchStart.column - 1);
|
||
const r = this._findLastMatchInLine(searcher, text, startLineNumber, captureMatches);
|
||
if (r) {
|
||
return r;
|
||
}
|
||
for (let i = 1; i <= lineCount; i++) {
|
||
const lineIndex = (lineCount + startLineNumber - i - 1) % lineCount;
|
||
const text = model.getLineContent(lineIndex + 1);
|
||
const r = this._findLastMatchInLine(searcher, text, lineIndex + 1, captureMatches);
|
||
if (r) {
|
||
return r;
|
||
}
|
||
}
|
||
return null;
|
||
}
|
||
static _findLastMatchInLine(searcher, text, lineNumber, captureMatches) {
|
||
let bestResult = null;
|
||
let m;
|
||
searcher.reset(0);
|
||
while ((m = searcher.next(text))) {
|
||
bestResult = createFindMatch(new range_1.Range(lineNumber, m.index + 1, lineNumber, m.index + 1 + m[0].length), m, captureMatches);
|
||
}
|
||
return bestResult;
|
||
}
|
||
}
|
||
exports.TextModelSearch = TextModelSearch;
|
||
function leftIsWordBounday(wordSeparators, text, textLength, matchStartIndex, matchLength) {
|
||
if (matchStartIndex === 0) {
|
||
// Match starts at start of string
|
||
return true;
|
||
}
|
||
const charBefore = text.charCodeAt(matchStartIndex - 1);
|
||
if (wordSeparators.get(charBefore) !== 0 /* WordCharacterClass.Regular */) {
|
||
// The character before the match is a word separator
|
||
return true;
|
||
}
|
||
if (charBefore === 13 /* CharCode.CarriageReturn */ || charBefore === 10 /* CharCode.LineFeed */) {
|
||
// The character before the match is line break or carriage return.
|
||
return true;
|
||
}
|
||
if (matchLength > 0) {
|
||
const firstCharInMatch = text.charCodeAt(matchStartIndex);
|
||
if (wordSeparators.get(firstCharInMatch) !== 0 /* WordCharacterClass.Regular */) {
|
||
// The first character inside the match is a word separator
|
||
return true;
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
function rightIsWordBounday(wordSeparators, text, textLength, matchStartIndex, matchLength) {
|
||
if (matchStartIndex + matchLength === textLength) {
|
||
// Match ends at end of string
|
||
return true;
|
||
}
|
||
const charAfter = text.charCodeAt(matchStartIndex + matchLength);
|
||
if (wordSeparators.get(charAfter) !== 0 /* WordCharacterClass.Regular */) {
|
||
// The character after the match is a word separator
|
||
return true;
|
||
}
|
||
if (charAfter === 13 /* CharCode.CarriageReturn */ || charAfter === 10 /* CharCode.LineFeed */) {
|
||
// The character after the match is line break or carriage return.
|
||
return true;
|
||
}
|
||
if (matchLength > 0) {
|
||
const lastCharInMatch = text.charCodeAt(matchStartIndex + matchLength - 1);
|
||
if (wordSeparators.get(lastCharInMatch) !== 0 /* WordCharacterClass.Regular */) {
|
||
// The last character in the match is a word separator
|
||
return true;
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
function isValidMatch(wordSeparators, text, textLength, matchStartIndex, matchLength) {
|
||
return (leftIsWordBounday(wordSeparators, text, textLength, matchStartIndex, matchLength)
|
||
&& rightIsWordBounday(wordSeparators, text, textLength, matchStartIndex, matchLength));
|
||
}
|
||
class Searcher {
|
||
constructor(wordSeparators, searchRegex) {
|
||
this._wordSeparators = wordSeparators;
|
||
this._searchRegex = searchRegex;
|
||
this._prevMatchStartIndex = -1;
|
||
this._prevMatchLength = 0;
|
||
}
|
||
reset(lastIndex) {
|
||
this._searchRegex.lastIndex = lastIndex;
|
||
this._prevMatchStartIndex = -1;
|
||
this._prevMatchLength = 0;
|
||
}
|
||
next(text) {
|
||
const textLength = text.length;
|
||
let m;
|
||
do {
|
||
if (this._prevMatchStartIndex + this._prevMatchLength === textLength) {
|
||
// Reached the end of the line
|
||
return null;
|
||
}
|
||
m = this._searchRegex.exec(text);
|
||
if (!m) {
|
||
return null;
|
||
}
|
||
const matchStartIndex = m.index;
|
||
const matchLength = m[0].length;
|
||
if (matchStartIndex === this._prevMatchStartIndex && matchLength === this._prevMatchLength) {
|
||
if (matchLength === 0) {
|
||
// the search result is an empty string and won't advance `regex.lastIndex`, so `regex.exec` will stuck here
|
||
// we attempt to recover from that by advancing by two if surrogate pair found and by one otherwise
|
||
if (strings.getNextCodePoint(text, textLength, this._searchRegex.lastIndex) > 0xFFFF) {
|
||
this._searchRegex.lastIndex += 2;
|
||
}
|
||
else {
|
||
this._searchRegex.lastIndex += 1;
|
||
}
|
||
continue;
|
||
}
|
||
// Exit early if the regex matches the same range twice
|
||
return null;
|
||
}
|
||
this._prevMatchStartIndex = matchStartIndex;
|
||
this._prevMatchLength = matchLength;
|
||
if (!this._wordSeparators || isValidMatch(this._wordSeparators, text, textLength, matchStartIndex, matchLength)) {
|
||
return m;
|
||
}
|
||
} while (m);
|
||
return null;
|
||
}
|
||
}
|
||
exports.Searcher = Searcher;
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[66/*vs/editor/common/services/editorWorkerHost*/], __M([0/*require*/,1/*exports*/]), function (require, exports) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.EditorWorkerHost = void 0;
|
||
class EditorWorkerHost {
|
||
static { this.CHANNEL_NAME = 'editorWorkerHost'; }
|
||
static getChannel(workerServer) {
|
||
return workerServer.getChannel(EditorWorkerHost.CHANNEL_NAME);
|
||
}
|
||
static setChannel(workerClient, obj) {
|
||
workerClient.setChannel(EditorWorkerHost.CHANNEL_NAME, obj);
|
||
}
|
||
}
|
||
exports.EditorWorkerHost = EditorWorkerHost;
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[67/*vs/editor/common/services/findSectionHeaders*/], __M([0/*require*/,1/*exports*/]), function (require, exports) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.findSectionHeaders = findSectionHeaders;
|
||
const markRegex = new RegExp('\\bMARK:\\s*(.*)$', 'd');
|
||
const trimDashesRegex = /^-+|-+$/g;
|
||
/**
|
||
* Find section headers in the model.
|
||
*
|
||
* @param model the text model to search in
|
||
* @param options options to search with
|
||
* @returns an array of section headers
|
||
*/
|
||
function findSectionHeaders(model, options) {
|
||
let headers = [];
|
||
if (options.findRegionSectionHeaders && options.foldingRules?.markers) {
|
||
const regionHeaders = collectRegionHeaders(model, options);
|
||
headers = headers.concat(regionHeaders);
|
||
}
|
||
if (options.findMarkSectionHeaders) {
|
||
const markHeaders = collectMarkHeaders(model);
|
||
headers = headers.concat(markHeaders);
|
||
}
|
||
return headers;
|
||
}
|
||
function collectRegionHeaders(model, options) {
|
||
const regionHeaders = [];
|
||
const endLineNumber = model.getLineCount();
|
||
for (let lineNumber = 1; lineNumber <= endLineNumber; lineNumber++) {
|
||
const lineContent = model.getLineContent(lineNumber);
|
||
const match = lineContent.match(options.foldingRules.markers.start);
|
||
if (match) {
|
||
const range = { startLineNumber: lineNumber, startColumn: match[0].length + 1, endLineNumber: lineNumber, endColumn: lineContent.length + 1 };
|
||
if (range.endColumn > range.startColumn) {
|
||
const sectionHeader = {
|
||
range,
|
||
...getHeaderText(lineContent.substring(match[0].length)),
|
||
shouldBeInComments: false
|
||
};
|
||
if (sectionHeader.text || sectionHeader.hasSeparatorLine) {
|
||
regionHeaders.push(sectionHeader);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return regionHeaders;
|
||
}
|
||
function collectMarkHeaders(model) {
|
||
const markHeaders = [];
|
||
const endLineNumber = model.getLineCount();
|
||
for (let lineNumber = 1; lineNumber <= endLineNumber; lineNumber++) {
|
||
const lineContent = model.getLineContent(lineNumber);
|
||
addMarkHeaderIfFound(lineContent, lineNumber, markHeaders);
|
||
}
|
||
return markHeaders;
|
||
}
|
||
function addMarkHeaderIfFound(lineContent, lineNumber, sectionHeaders) {
|
||
markRegex.lastIndex = 0;
|
||
const match = markRegex.exec(lineContent);
|
||
if (match) {
|
||
const column = match.indices[1][0] + 1;
|
||
const endColumn = match.indices[1][1] + 1;
|
||
const range = { startLineNumber: lineNumber, startColumn: column, endLineNumber: lineNumber, endColumn: endColumn };
|
||
if (range.endColumn > range.startColumn) {
|
||
const sectionHeader = {
|
||
range,
|
||
...getHeaderText(match[1]),
|
||
shouldBeInComments: true
|
||
};
|
||
if (sectionHeader.text || sectionHeader.hasSeparatorLine) {
|
||
sectionHeaders.push(sectionHeader);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
function getHeaderText(text) {
|
||
text = text.trim();
|
||
const hasSeparatorLine = text.startsWith('-');
|
||
text = text.replace(trimDashesRegex, '');
|
||
return { text, hasSeparatorLine };
|
||
}
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[68/*vs/editor/common/services/unicodeTextModelHighlighter*/], __M([0/*require*/,1/*exports*/,2/*vs/editor/common/core/range*/,65/*vs/editor/common/model/textModelSearch*/,6/*vs/base/common/strings*/,12/*vs/base/common/assert*/,31/*vs/editor/common/core/wordHelper*/]), function (require, exports, range_1, textModelSearch_1, strings, assert_1, wordHelper_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.UnicodeTextModelHighlighter = void 0;
|
||
class UnicodeTextModelHighlighter {
|
||
static computeUnicodeHighlights(model, options, range) {
|
||
const startLine = range ? range.startLineNumber : 1;
|
||
const endLine = range ? range.endLineNumber : model.getLineCount();
|
||
const codePointHighlighter = new CodePointHighlighter(options);
|
||
const candidates = codePointHighlighter.getCandidateCodePoints();
|
||
let regex;
|
||
if (candidates === 'allNonBasicAscii') {
|
||
regex = new RegExp('[^\\t\\n\\r\\x20-\\x7E]', 'g');
|
||
}
|
||
else {
|
||
regex = new RegExp(`${buildRegExpCharClassExpr(Array.from(candidates))}`, 'g');
|
||
}
|
||
const searcher = new textModelSearch_1.Searcher(null, regex);
|
||
const ranges = [];
|
||
let hasMore = false;
|
||
let m;
|
||
let ambiguousCharacterCount = 0;
|
||
let invisibleCharacterCount = 0;
|
||
let nonBasicAsciiCharacterCount = 0;
|
||
forLoop: for (let lineNumber = startLine, lineCount = endLine; lineNumber <= lineCount; lineNumber++) {
|
||
const lineContent = model.getLineContent(lineNumber);
|
||
const lineLength = lineContent.length;
|
||
// Reset regex to search from the beginning
|
||
searcher.reset(0);
|
||
do {
|
||
m = searcher.next(lineContent);
|
||
if (m) {
|
||
let startIndex = m.index;
|
||
let endIndex = m.index + m[0].length;
|
||
// Extend range to entire code point
|
||
if (startIndex > 0) {
|
||
const charCodeBefore = lineContent.charCodeAt(startIndex - 1);
|
||
if (strings.isHighSurrogate(charCodeBefore)) {
|
||
startIndex--;
|
||
}
|
||
}
|
||
if (endIndex + 1 < lineLength) {
|
||
const charCodeBefore = lineContent.charCodeAt(endIndex - 1);
|
||
if (strings.isHighSurrogate(charCodeBefore)) {
|
||
endIndex++;
|
||
}
|
||
}
|
||
const str = lineContent.substring(startIndex, endIndex);
|
||
let word = (0, wordHelper_1.getWordAtText)(startIndex + 1, wordHelper_1.DEFAULT_WORD_REGEXP, lineContent, 0);
|
||
if (word && word.endColumn <= startIndex + 1) {
|
||
// The word does not include the problematic character, ignore the word
|
||
word = null;
|
||
}
|
||
const highlightReason = codePointHighlighter.shouldHighlightNonBasicASCII(str, word ? word.word : null);
|
||
if (highlightReason !== 0 /* SimpleHighlightReason.None */) {
|
||
if (highlightReason === 3 /* SimpleHighlightReason.Ambiguous */) {
|
||
ambiguousCharacterCount++;
|
||
}
|
||
else if (highlightReason === 2 /* SimpleHighlightReason.Invisible */) {
|
||
invisibleCharacterCount++;
|
||
}
|
||
else if (highlightReason === 1 /* SimpleHighlightReason.NonBasicASCII */) {
|
||
nonBasicAsciiCharacterCount++;
|
||
}
|
||
else {
|
||
(0, assert_1.assertNever)(highlightReason);
|
||
}
|
||
const MAX_RESULT_LENGTH = 1000;
|
||
if (ranges.length >= MAX_RESULT_LENGTH) {
|
||
hasMore = true;
|
||
break forLoop;
|
||
}
|
||
ranges.push(new range_1.Range(lineNumber, startIndex + 1, lineNumber, endIndex + 1));
|
||
}
|
||
}
|
||
} while (m);
|
||
}
|
||
return {
|
||
ranges,
|
||
hasMore,
|
||
ambiguousCharacterCount,
|
||
invisibleCharacterCount,
|
||
nonBasicAsciiCharacterCount
|
||
};
|
||
}
|
||
static computeUnicodeHighlightReason(char, options) {
|
||
const codePointHighlighter = new CodePointHighlighter(options);
|
||
const reason = codePointHighlighter.shouldHighlightNonBasicASCII(char, null);
|
||
switch (reason) {
|
||
case 0 /* SimpleHighlightReason.None */:
|
||
return null;
|
||
case 2 /* SimpleHighlightReason.Invisible */:
|
||
return { kind: 1 /* UnicodeHighlighterReasonKind.Invisible */ };
|
||
case 3 /* SimpleHighlightReason.Ambiguous */: {
|
||
const codePoint = char.codePointAt(0);
|
||
const primaryConfusable = codePointHighlighter.ambiguousCharacters.getPrimaryConfusable(codePoint);
|
||
const notAmbiguousInLocales = strings.AmbiguousCharacters.getLocales().filter((l) => !strings.AmbiguousCharacters.getInstance(new Set([...options.allowedLocales, l])).isAmbiguous(codePoint));
|
||
return { kind: 0 /* UnicodeHighlighterReasonKind.Ambiguous */, confusableWith: String.fromCodePoint(primaryConfusable), notAmbiguousInLocales };
|
||
}
|
||
case 1 /* SimpleHighlightReason.NonBasicASCII */:
|
||
return { kind: 2 /* UnicodeHighlighterReasonKind.NonBasicAscii */ };
|
||
}
|
||
}
|
||
}
|
||
exports.UnicodeTextModelHighlighter = UnicodeTextModelHighlighter;
|
||
function buildRegExpCharClassExpr(codePoints, flags) {
|
||
const src = `[${strings.escapeRegExpCharacters(codePoints.map((i) => String.fromCodePoint(i)).join(''))}]`;
|
||
return src;
|
||
}
|
||
class CodePointHighlighter {
|
||
constructor(options) {
|
||
this.options = options;
|
||
this.allowedCodePoints = new Set(options.allowedCodePoints);
|
||
this.ambiguousCharacters = strings.AmbiguousCharacters.getInstance(new Set(options.allowedLocales));
|
||
}
|
||
getCandidateCodePoints() {
|
||
if (this.options.nonBasicASCII) {
|
||
return 'allNonBasicAscii';
|
||
}
|
||
const set = new Set();
|
||
if (this.options.invisibleCharacters) {
|
||
for (const cp of strings.InvisibleCharacters.codePoints) {
|
||
if (!isAllowedInvisibleCharacter(String.fromCodePoint(cp))) {
|
||
set.add(cp);
|
||
}
|
||
}
|
||
}
|
||
if (this.options.ambiguousCharacters) {
|
||
for (const cp of this.ambiguousCharacters.getConfusableCodePoints()) {
|
||
set.add(cp);
|
||
}
|
||
}
|
||
for (const cp of this.allowedCodePoints) {
|
||
set.delete(cp);
|
||
}
|
||
return set;
|
||
}
|
||
shouldHighlightNonBasicASCII(character, wordContext) {
|
||
const codePoint = character.codePointAt(0);
|
||
if (this.allowedCodePoints.has(codePoint)) {
|
||
return 0 /* SimpleHighlightReason.None */;
|
||
}
|
||
if (this.options.nonBasicASCII) {
|
||
return 1 /* SimpleHighlightReason.NonBasicASCII */;
|
||
}
|
||
let hasBasicASCIICharacters = false;
|
||
let hasNonConfusableNonBasicAsciiCharacter = false;
|
||
if (wordContext) {
|
||
for (const char of wordContext) {
|
||
const codePoint = char.codePointAt(0);
|
||
const isBasicASCII = strings.isBasicASCII(char);
|
||
hasBasicASCIICharacters = hasBasicASCIICharacters || isBasicASCII;
|
||
if (!isBasicASCII &&
|
||
!this.ambiguousCharacters.isAmbiguous(codePoint) &&
|
||
!strings.InvisibleCharacters.isInvisibleCharacter(codePoint)) {
|
||
hasNonConfusableNonBasicAsciiCharacter = true;
|
||
}
|
||
}
|
||
}
|
||
if (
|
||
/* Don't allow mixing weird looking characters with ASCII */ !hasBasicASCIICharacters &&
|
||
/* Is there an obviously weird looking character? */ hasNonConfusableNonBasicAsciiCharacter) {
|
||
return 0 /* SimpleHighlightReason.None */;
|
||
}
|
||
if (this.options.invisibleCharacters) {
|
||
// TODO check for emojis
|
||
if (!isAllowedInvisibleCharacter(character) && strings.InvisibleCharacters.isInvisibleCharacter(codePoint)) {
|
||
return 2 /* SimpleHighlightReason.Invisible */;
|
||
}
|
||
}
|
||
if (this.options.ambiguousCharacters) {
|
||
if (this.ambiguousCharacters.isAmbiguous(codePoint)) {
|
||
return 3 /* SimpleHighlightReason.Ambiguous */;
|
||
}
|
||
}
|
||
return 0 /* SimpleHighlightReason.None */;
|
||
}
|
||
}
|
||
function isAllowedInvisibleCharacter(character) {
|
||
return character === ' ' || character === '\n' || character === '\t';
|
||
}
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[69/*vs/editor/common/standalone/standaloneEnums*/], __M([0/*require*/,1/*exports*/]), function (require, exports) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.WrappingIndent = exports.TrackedRangeStickiness = exports.TextEditorCursorStyle = exports.TextEditorCursorBlinkingStyle = exports.SymbolTag = exports.SymbolKind = exports.SignatureHelpTriggerKind = exports.ShowLightbulbIconMode = exports.SelectionDirection = exports.ScrollbarVisibility = exports.ScrollType = exports.RenderMinimap = exports.RenderLineNumbersType = exports.PositionAffinity = exports.PartialAcceptTriggerKind = exports.OverviewRulerLane = exports.OverlayWidgetPositionPreference = exports.NewSymbolNameTriggerKind = exports.NewSymbolNameTag = exports.MouseTargetType = exports.MinimapSectionHeaderStyle = exports.MinimapPosition = exports.MarkerTag = exports.MarkerSeverity = exports.KeyCode = exports.InlineEditTriggerKind = exports.InlineCompletionTriggerKind = exports.InlayHintKind = exports.InjectedTextCursorStops = exports.IndentAction = exports.HoverVerbosityAction = exports.GlyphMarginLane = exports.EndOfLineSequence = exports.EndOfLinePreference = exports.EditorOption = exports.EditorAutoIndentStrategy = exports.DocumentHighlightKind = exports.DefaultEndOfLine = exports.CursorChangeReason = exports.ContentWidgetPositionPreference = exports.CompletionTriggerKind = exports.CompletionItemTag = exports.CompletionItemKind = exports.CompletionItemInsertTextRule = exports.CodeActionTriggerType = exports.AccessibilitySupport = void 0;
|
||
// THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY.
|
||
var AccessibilitySupport;
|
||
(function (AccessibilitySupport) {
|
||
/**
|
||
* This should be the browser case where it is not known if a screen reader is attached or no.
|
||
*/
|
||
AccessibilitySupport[AccessibilitySupport["Unknown"] = 0] = "Unknown";
|
||
AccessibilitySupport[AccessibilitySupport["Disabled"] = 1] = "Disabled";
|
||
AccessibilitySupport[AccessibilitySupport["Enabled"] = 2] = "Enabled";
|
||
})(AccessibilitySupport || (exports.AccessibilitySupport = AccessibilitySupport = {}));
|
||
var CodeActionTriggerType;
|
||
(function (CodeActionTriggerType) {
|
||
CodeActionTriggerType[CodeActionTriggerType["Invoke"] = 1] = "Invoke";
|
||
CodeActionTriggerType[CodeActionTriggerType["Auto"] = 2] = "Auto";
|
||
})(CodeActionTriggerType || (exports.CodeActionTriggerType = CodeActionTriggerType = {}));
|
||
var CompletionItemInsertTextRule;
|
||
(function (CompletionItemInsertTextRule) {
|
||
CompletionItemInsertTextRule[CompletionItemInsertTextRule["None"] = 0] = "None";
|
||
/**
|
||
* Adjust whitespace/indentation of multiline insert texts to
|
||
* match the current line indentation.
|
||
*/
|
||
CompletionItemInsertTextRule[CompletionItemInsertTextRule["KeepWhitespace"] = 1] = "KeepWhitespace";
|
||
/**
|
||
* `insertText` is a snippet.
|
||
*/
|
||
CompletionItemInsertTextRule[CompletionItemInsertTextRule["InsertAsSnippet"] = 4] = "InsertAsSnippet";
|
||
})(CompletionItemInsertTextRule || (exports.CompletionItemInsertTextRule = CompletionItemInsertTextRule = {}));
|
||
var CompletionItemKind;
|
||
(function (CompletionItemKind) {
|
||
CompletionItemKind[CompletionItemKind["Method"] = 0] = "Method";
|
||
CompletionItemKind[CompletionItemKind["Function"] = 1] = "Function";
|
||
CompletionItemKind[CompletionItemKind["Constructor"] = 2] = "Constructor";
|
||
CompletionItemKind[CompletionItemKind["Field"] = 3] = "Field";
|
||
CompletionItemKind[CompletionItemKind["Variable"] = 4] = "Variable";
|
||
CompletionItemKind[CompletionItemKind["Class"] = 5] = "Class";
|
||
CompletionItemKind[CompletionItemKind["Struct"] = 6] = "Struct";
|
||
CompletionItemKind[CompletionItemKind["Interface"] = 7] = "Interface";
|
||
CompletionItemKind[CompletionItemKind["Module"] = 8] = "Module";
|
||
CompletionItemKind[CompletionItemKind["Property"] = 9] = "Property";
|
||
CompletionItemKind[CompletionItemKind["Event"] = 10] = "Event";
|
||
CompletionItemKind[CompletionItemKind["Operator"] = 11] = "Operator";
|
||
CompletionItemKind[CompletionItemKind["Unit"] = 12] = "Unit";
|
||
CompletionItemKind[CompletionItemKind["Value"] = 13] = "Value";
|
||
CompletionItemKind[CompletionItemKind["Constant"] = 14] = "Constant";
|
||
CompletionItemKind[CompletionItemKind["Enum"] = 15] = "Enum";
|
||
CompletionItemKind[CompletionItemKind["EnumMember"] = 16] = "EnumMember";
|
||
CompletionItemKind[CompletionItemKind["Keyword"] = 17] = "Keyword";
|
||
CompletionItemKind[CompletionItemKind["Text"] = 18] = "Text";
|
||
CompletionItemKind[CompletionItemKind["Color"] = 19] = "Color";
|
||
CompletionItemKind[CompletionItemKind["File"] = 20] = "File";
|
||
CompletionItemKind[CompletionItemKind["Reference"] = 21] = "Reference";
|
||
CompletionItemKind[CompletionItemKind["Customcolor"] = 22] = "Customcolor";
|
||
CompletionItemKind[CompletionItemKind["Folder"] = 23] = "Folder";
|
||
CompletionItemKind[CompletionItemKind["TypeParameter"] = 24] = "TypeParameter";
|
||
CompletionItemKind[CompletionItemKind["User"] = 25] = "User";
|
||
CompletionItemKind[CompletionItemKind["Issue"] = 26] = "Issue";
|
||
CompletionItemKind[CompletionItemKind["Snippet"] = 27] = "Snippet";
|
||
})(CompletionItemKind || (exports.CompletionItemKind = CompletionItemKind = {}));
|
||
var CompletionItemTag;
|
||
(function (CompletionItemTag) {
|
||
CompletionItemTag[CompletionItemTag["Deprecated"] = 1] = "Deprecated";
|
||
})(CompletionItemTag || (exports.CompletionItemTag = CompletionItemTag = {}));
|
||
/**
|
||
* How a suggest provider was triggered.
|
||
*/
|
||
var CompletionTriggerKind;
|
||
(function (CompletionTriggerKind) {
|
||
CompletionTriggerKind[CompletionTriggerKind["Invoke"] = 0] = "Invoke";
|
||
CompletionTriggerKind[CompletionTriggerKind["TriggerCharacter"] = 1] = "TriggerCharacter";
|
||
CompletionTriggerKind[CompletionTriggerKind["TriggerForIncompleteCompletions"] = 2] = "TriggerForIncompleteCompletions";
|
||
})(CompletionTriggerKind || (exports.CompletionTriggerKind = CompletionTriggerKind = {}));
|
||
/**
|
||
* A positioning preference for rendering content widgets.
|
||
*/
|
||
var ContentWidgetPositionPreference;
|
||
(function (ContentWidgetPositionPreference) {
|
||
/**
|
||
* Place the content widget exactly at a position
|
||
*/
|
||
ContentWidgetPositionPreference[ContentWidgetPositionPreference["EXACT"] = 0] = "EXACT";
|
||
/**
|
||
* Place the content widget above a position
|
||
*/
|
||
ContentWidgetPositionPreference[ContentWidgetPositionPreference["ABOVE"] = 1] = "ABOVE";
|
||
/**
|
||
* Place the content widget below a position
|
||
*/
|
||
ContentWidgetPositionPreference[ContentWidgetPositionPreference["BELOW"] = 2] = "BELOW";
|
||
})(ContentWidgetPositionPreference || (exports.ContentWidgetPositionPreference = ContentWidgetPositionPreference = {}));
|
||
/**
|
||
* Describes the reason the cursor has changed its position.
|
||
*/
|
||
var CursorChangeReason;
|
||
(function (CursorChangeReason) {
|
||
/**
|
||
* Unknown or not set.
|
||
*/
|
||
CursorChangeReason[CursorChangeReason["NotSet"] = 0] = "NotSet";
|
||
/**
|
||
* A `model.setValue()` was called.
|
||
*/
|
||
CursorChangeReason[CursorChangeReason["ContentFlush"] = 1] = "ContentFlush";
|
||
/**
|
||
* The `model` has been changed outside of this cursor and the cursor recovers its position from associated markers.
|
||
*/
|
||
CursorChangeReason[CursorChangeReason["RecoverFromMarkers"] = 2] = "RecoverFromMarkers";
|
||
/**
|
||
* There was an explicit user gesture.
|
||
*/
|
||
CursorChangeReason[CursorChangeReason["Explicit"] = 3] = "Explicit";
|
||
/**
|
||
* There was a Paste.
|
||
*/
|
||
CursorChangeReason[CursorChangeReason["Paste"] = 4] = "Paste";
|
||
/**
|
||
* There was an Undo.
|
||
*/
|
||
CursorChangeReason[CursorChangeReason["Undo"] = 5] = "Undo";
|
||
/**
|
||
* There was a Redo.
|
||
*/
|
||
CursorChangeReason[CursorChangeReason["Redo"] = 6] = "Redo";
|
||
})(CursorChangeReason || (exports.CursorChangeReason = CursorChangeReason = {}));
|
||
/**
|
||
* The default end of line to use when instantiating models.
|
||
*/
|
||
var DefaultEndOfLine;
|
||
(function (DefaultEndOfLine) {
|
||
/**
|
||
* Use line feed (\n) as the end of line character.
|
||
*/
|
||
DefaultEndOfLine[DefaultEndOfLine["LF"] = 1] = "LF";
|
||
/**
|
||
* Use carriage return and line feed (\r\n) as the end of line character.
|
||
*/
|
||
DefaultEndOfLine[DefaultEndOfLine["CRLF"] = 2] = "CRLF";
|
||
})(DefaultEndOfLine || (exports.DefaultEndOfLine = DefaultEndOfLine = {}));
|
||
/**
|
||
* A document highlight kind.
|
||
*/
|
||
var DocumentHighlightKind;
|
||
(function (DocumentHighlightKind) {
|
||
/**
|
||
* A textual occurrence.
|
||
*/
|
||
DocumentHighlightKind[DocumentHighlightKind["Text"] = 0] = "Text";
|
||
/**
|
||
* Read-access of a symbol, like reading a variable.
|
||
*/
|
||
DocumentHighlightKind[DocumentHighlightKind["Read"] = 1] = "Read";
|
||
/**
|
||
* Write-access of a symbol, like writing to a variable.
|
||
*/
|
||
DocumentHighlightKind[DocumentHighlightKind["Write"] = 2] = "Write";
|
||
})(DocumentHighlightKind || (exports.DocumentHighlightKind = DocumentHighlightKind = {}));
|
||
/**
|
||
* Configuration options for auto indentation in the editor
|
||
*/
|
||
var EditorAutoIndentStrategy;
|
||
(function (EditorAutoIndentStrategy) {
|
||
EditorAutoIndentStrategy[EditorAutoIndentStrategy["None"] = 0] = "None";
|
||
EditorAutoIndentStrategy[EditorAutoIndentStrategy["Keep"] = 1] = "Keep";
|
||
EditorAutoIndentStrategy[EditorAutoIndentStrategy["Brackets"] = 2] = "Brackets";
|
||
EditorAutoIndentStrategy[EditorAutoIndentStrategy["Advanced"] = 3] = "Advanced";
|
||
EditorAutoIndentStrategy[EditorAutoIndentStrategy["Full"] = 4] = "Full";
|
||
})(EditorAutoIndentStrategy || (exports.EditorAutoIndentStrategy = EditorAutoIndentStrategy = {}));
|
||
var EditorOption;
|
||
(function (EditorOption) {
|
||
EditorOption[EditorOption["acceptSuggestionOnCommitCharacter"] = 0] = "acceptSuggestionOnCommitCharacter";
|
||
EditorOption[EditorOption["acceptSuggestionOnEnter"] = 1] = "acceptSuggestionOnEnter";
|
||
EditorOption[EditorOption["accessibilitySupport"] = 2] = "accessibilitySupport";
|
||
EditorOption[EditorOption["accessibilityPageSize"] = 3] = "accessibilityPageSize";
|
||
EditorOption[EditorOption["ariaLabel"] = 4] = "ariaLabel";
|
||
EditorOption[EditorOption["ariaRequired"] = 5] = "ariaRequired";
|
||
EditorOption[EditorOption["autoClosingBrackets"] = 6] = "autoClosingBrackets";
|
||
EditorOption[EditorOption["autoClosingComments"] = 7] = "autoClosingComments";
|
||
EditorOption[EditorOption["screenReaderAnnounceInlineSuggestion"] = 8] = "screenReaderAnnounceInlineSuggestion";
|
||
EditorOption[EditorOption["autoClosingDelete"] = 9] = "autoClosingDelete";
|
||
EditorOption[EditorOption["autoClosingOvertype"] = 10] = "autoClosingOvertype";
|
||
EditorOption[EditorOption["autoClosingQuotes"] = 11] = "autoClosingQuotes";
|
||
EditorOption[EditorOption["autoIndent"] = 12] = "autoIndent";
|
||
EditorOption[EditorOption["automaticLayout"] = 13] = "automaticLayout";
|
||
EditorOption[EditorOption["autoSurround"] = 14] = "autoSurround";
|
||
EditorOption[EditorOption["bracketPairColorization"] = 15] = "bracketPairColorization";
|
||
EditorOption[EditorOption["guides"] = 16] = "guides";
|
||
EditorOption[EditorOption["codeLens"] = 17] = "codeLens";
|
||
EditorOption[EditorOption["codeLensFontFamily"] = 18] = "codeLensFontFamily";
|
||
EditorOption[EditorOption["codeLensFontSize"] = 19] = "codeLensFontSize";
|
||
EditorOption[EditorOption["colorDecorators"] = 20] = "colorDecorators";
|
||
EditorOption[EditorOption["colorDecoratorsLimit"] = 21] = "colorDecoratorsLimit";
|
||
EditorOption[EditorOption["columnSelection"] = 22] = "columnSelection";
|
||
EditorOption[EditorOption["comments"] = 23] = "comments";
|
||
EditorOption[EditorOption["contextmenu"] = 24] = "contextmenu";
|
||
EditorOption[EditorOption["copyWithSyntaxHighlighting"] = 25] = "copyWithSyntaxHighlighting";
|
||
EditorOption[EditorOption["cursorBlinking"] = 26] = "cursorBlinking";
|
||
EditorOption[EditorOption["cursorSmoothCaretAnimation"] = 27] = "cursorSmoothCaretAnimation";
|
||
EditorOption[EditorOption["cursorStyle"] = 28] = "cursorStyle";
|
||
EditorOption[EditorOption["cursorSurroundingLines"] = 29] = "cursorSurroundingLines";
|
||
EditorOption[EditorOption["cursorSurroundingLinesStyle"] = 30] = "cursorSurroundingLinesStyle";
|
||
EditorOption[EditorOption["cursorWidth"] = 31] = "cursorWidth";
|
||
EditorOption[EditorOption["disableLayerHinting"] = 32] = "disableLayerHinting";
|
||
EditorOption[EditorOption["disableMonospaceOptimizations"] = 33] = "disableMonospaceOptimizations";
|
||
EditorOption[EditorOption["domReadOnly"] = 34] = "domReadOnly";
|
||
EditorOption[EditorOption["dragAndDrop"] = 35] = "dragAndDrop";
|
||
EditorOption[EditorOption["dropIntoEditor"] = 36] = "dropIntoEditor";
|
||
EditorOption[EditorOption["emptySelectionClipboard"] = 37] = "emptySelectionClipboard";
|
||
EditorOption[EditorOption["experimentalWhitespaceRendering"] = 38] = "experimentalWhitespaceRendering";
|
||
EditorOption[EditorOption["extraEditorClassName"] = 39] = "extraEditorClassName";
|
||
EditorOption[EditorOption["fastScrollSensitivity"] = 40] = "fastScrollSensitivity";
|
||
EditorOption[EditorOption["find"] = 41] = "find";
|
||
EditorOption[EditorOption["fixedOverflowWidgets"] = 42] = "fixedOverflowWidgets";
|
||
EditorOption[EditorOption["folding"] = 43] = "folding";
|
||
EditorOption[EditorOption["foldingStrategy"] = 44] = "foldingStrategy";
|
||
EditorOption[EditorOption["foldingHighlight"] = 45] = "foldingHighlight";
|
||
EditorOption[EditorOption["foldingImportsByDefault"] = 46] = "foldingImportsByDefault";
|
||
EditorOption[EditorOption["foldingMaximumRegions"] = 47] = "foldingMaximumRegions";
|
||
EditorOption[EditorOption["unfoldOnClickAfterEndOfLine"] = 48] = "unfoldOnClickAfterEndOfLine";
|
||
EditorOption[EditorOption["fontFamily"] = 49] = "fontFamily";
|
||
EditorOption[EditorOption["fontInfo"] = 50] = "fontInfo";
|
||
EditorOption[EditorOption["fontLigatures"] = 51] = "fontLigatures";
|
||
EditorOption[EditorOption["fontSize"] = 52] = "fontSize";
|
||
EditorOption[EditorOption["fontWeight"] = 53] = "fontWeight";
|
||
EditorOption[EditorOption["fontVariations"] = 54] = "fontVariations";
|
||
EditorOption[EditorOption["formatOnPaste"] = 55] = "formatOnPaste";
|
||
EditorOption[EditorOption["formatOnType"] = 56] = "formatOnType";
|
||
EditorOption[EditorOption["glyphMargin"] = 57] = "glyphMargin";
|
||
EditorOption[EditorOption["gotoLocation"] = 58] = "gotoLocation";
|
||
EditorOption[EditorOption["hideCursorInOverviewRuler"] = 59] = "hideCursorInOverviewRuler";
|
||
EditorOption[EditorOption["hover"] = 60] = "hover";
|
||
EditorOption[EditorOption["inDiffEditor"] = 61] = "inDiffEditor";
|
||
EditorOption[EditorOption["inlineSuggest"] = 62] = "inlineSuggest";
|
||
EditorOption[EditorOption["inlineEdit"] = 63] = "inlineEdit";
|
||
EditorOption[EditorOption["letterSpacing"] = 64] = "letterSpacing";
|
||
EditorOption[EditorOption["lightbulb"] = 65] = "lightbulb";
|
||
EditorOption[EditorOption["lineDecorationsWidth"] = 66] = "lineDecorationsWidth";
|
||
EditorOption[EditorOption["lineHeight"] = 67] = "lineHeight";
|
||
EditorOption[EditorOption["lineNumbers"] = 68] = "lineNumbers";
|
||
EditorOption[EditorOption["lineNumbersMinChars"] = 69] = "lineNumbersMinChars";
|
||
EditorOption[EditorOption["linkedEditing"] = 70] = "linkedEditing";
|
||
EditorOption[EditorOption["links"] = 71] = "links";
|
||
EditorOption[EditorOption["matchBrackets"] = 72] = "matchBrackets";
|
||
EditorOption[EditorOption["minimap"] = 73] = "minimap";
|
||
EditorOption[EditorOption["mouseStyle"] = 74] = "mouseStyle";
|
||
EditorOption[EditorOption["mouseWheelScrollSensitivity"] = 75] = "mouseWheelScrollSensitivity";
|
||
EditorOption[EditorOption["mouseWheelZoom"] = 76] = "mouseWheelZoom";
|
||
EditorOption[EditorOption["multiCursorMergeOverlapping"] = 77] = "multiCursorMergeOverlapping";
|
||
EditorOption[EditorOption["multiCursorModifier"] = 78] = "multiCursorModifier";
|
||
EditorOption[EditorOption["multiCursorPaste"] = 79] = "multiCursorPaste";
|
||
EditorOption[EditorOption["multiCursorLimit"] = 80] = "multiCursorLimit";
|
||
EditorOption[EditorOption["occurrencesHighlight"] = 81] = "occurrencesHighlight";
|
||
EditorOption[EditorOption["overviewRulerBorder"] = 82] = "overviewRulerBorder";
|
||
EditorOption[EditorOption["overviewRulerLanes"] = 83] = "overviewRulerLanes";
|
||
EditorOption[EditorOption["padding"] = 84] = "padding";
|
||
EditorOption[EditorOption["pasteAs"] = 85] = "pasteAs";
|
||
EditorOption[EditorOption["parameterHints"] = 86] = "parameterHints";
|
||
EditorOption[EditorOption["peekWidgetDefaultFocus"] = 87] = "peekWidgetDefaultFocus";
|
||
EditorOption[EditorOption["placeholder"] = 88] = "placeholder";
|
||
EditorOption[EditorOption["definitionLinkOpensInPeek"] = 89] = "definitionLinkOpensInPeek";
|
||
EditorOption[EditorOption["quickSuggestions"] = 90] = "quickSuggestions";
|
||
EditorOption[EditorOption["quickSuggestionsDelay"] = 91] = "quickSuggestionsDelay";
|
||
EditorOption[EditorOption["readOnly"] = 92] = "readOnly";
|
||
EditorOption[EditorOption["readOnlyMessage"] = 93] = "readOnlyMessage";
|
||
EditorOption[EditorOption["renameOnType"] = 94] = "renameOnType";
|
||
EditorOption[EditorOption["renderControlCharacters"] = 95] = "renderControlCharacters";
|
||
EditorOption[EditorOption["renderFinalNewline"] = 96] = "renderFinalNewline";
|
||
EditorOption[EditorOption["renderLineHighlight"] = 97] = "renderLineHighlight";
|
||
EditorOption[EditorOption["renderLineHighlightOnlyWhenFocus"] = 98] = "renderLineHighlightOnlyWhenFocus";
|
||
EditorOption[EditorOption["renderValidationDecorations"] = 99] = "renderValidationDecorations";
|
||
EditorOption[EditorOption["renderWhitespace"] = 100] = "renderWhitespace";
|
||
EditorOption[EditorOption["revealHorizontalRightPadding"] = 101] = "revealHorizontalRightPadding";
|
||
EditorOption[EditorOption["roundedSelection"] = 102] = "roundedSelection";
|
||
EditorOption[EditorOption["rulers"] = 103] = "rulers";
|
||
EditorOption[EditorOption["scrollbar"] = 104] = "scrollbar";
|
||
EditorOption[EditorOption["scrollBeyondLastColumn"] = 105] = "scrollBeyondLastColumn";
|
||
EditorOption[EditorOption["scrollBeyondLastLine"] = 106] = "scrollBeyondLastLine";
|
||
EditorOption[EditorOption["scrollPredominantAxis"] = 107] = "scrollPredominantAxis";
|
||
EditorOption[EditorOption["selectionClipboard"] = 108] = "selectionClipboard";
|
||
EditorOption[EditorOption["selectionHighlight"] = 109] = "selectionHighlight";
|
||
EditorOption[EditorOption["selectOnLineNumbers"] = 110] = "selectOnLineNumbers";
|
||
EditorOption[EditorOption["showFoldingControls"] = 111] = "showFoldingControls";
|
||
EditorOption[EditorOption["showUnused"] = 112] = "showUnused";
|
||
EditorOption[EditorOption["snippetSuggestions"] = 113] = "snippetSuggestions";
|
||
EditorOption[EditorOption["smartSelect"] = 114] = "smartSelect";
|
||
EditorOption[EditorOption["smoothScrolling"] = 115] = "smoothScrolling";
|
||
EditorOption[EditorOption["stickyScroll"] = 116] = "stickyScroll";
|
||
EditorOption[EditorOption["stickyTabStops"] = 117] = "stickyTabStops";
|
||
EditorOption[EditorOption["stopRenderingLineAfter"] = 118] = "stopRenderingLineAfter";
|
||
EditorOption[EditorOption["suggest"] = 119] = "suggest";
|
||
EditorOption[EditorOption["suggestFontSize"] = 120] = "suggestFontSize";
|
||
EditorOption[EditorOption["suggestLineHeight"] = 121] = "suggestLineHeight";
|
||
EditorOption[EditorOption["suggestOnTriggerCharacters"] = 122] = "suggestOnTriggerCharacters";
|
||
EditorOption[EditorOption["suggestSelection"] = 123] = "suggestSelection";
|
||
EditorOption[EditorOption["tabCompletion"] = 124] = "tabCompletion";
|
||
EditorOption[EditorOption["tabIndex"] = 125] = "tabIndex";
|
||
EditorOption[EditorOption["unicodeHighlighting"] = 126] = "unicodeHighlighting";
|
||
EditorOption[EditorOption["unusualLineTerminators"] = 127] = "unusualLineTerminators";
|
||
EditorOption[EditorOption["useShadowDOM"] = 128] = "useShadowDOM";
|
||
EditorOption[EditorOption["useTabStops"] = 129] = "useTabStops";
|
||
EditorOption[EditorOption["wordBreak"] = 130] = "wordBreak";
|
||
EditorOption[EditorOption["wordSegmenterLocales"] = 131] = "wordSegmenterLocales";
|
||
EditorOption[EditorOption["wordSeparators"] = 132] = "wordSeparators";
|
||
EditorOption[EditorOption["wordWrap"] = 133] = "wordWrap";
|
||
EditorOption[EditorOption["wordWrapBreakAfterCharacters"] = 134] = "wordWrapBreakAfterCharacters";
|
||
EditorOption[EditorOption["wordWrapBreakBeforeCharacters"] = 135] = "wordWrapBreakBeforeCharacters";
|
||
EditorOption[EditorOption["wordWrapColumn"] = 136] = "wordWrapColumn";
|
||
EditorOption[EditorOption["wordWrapOverride1"] = 137] = "wordWrapOverride1";
|
||
EditorOption[EditorOption["wordWrapOverride2"] = 138] = "wordWrapOverride2";
|
||
EditorOption[EditorOption["wrappingIndent"] = 139] = "wrappingIndent";
|
||
EditorOption[EditorOption["wrappingStrategy"] = 140] = "wrappingStrategy";
|
||
EditorOption[EditorOption["showDeprecated"] = 141] = "showDeprecated";
|
||
EditorOption[EditorOption["inlayHints"] = 142] = "inlayHints";
|
||
EditorOption[EditorOption["editorClassName"] = 143] = "editorClassName";
|
||
EditorOption[EditorOption["pixelRatio"] = 144] = "pixelRatio";
|
||
EditorOption[EditorOption["tabFocusMode"] = 145] = "tabFocusMode";
|
||
EditorOption[EditorOption["layoutInfo"] = 146] = "layoutInfo";
|
||
EditorOption[EditorOption["wrappingInfo"] = 147] = "wrappingInfo";
|
||
EditorOption[EditorOption["defaultColorDecorators"] = 148] = "defaultColorDecorators";
|
||
EditorOption[EditorOption["colorDecoratorsActivatedOn"] = 149] = "colorDecoratorsActivatedOn";
|
||
EditorOption[EditorOption["inlineCompletionsAccessibilityVerbose"] = 150] = "inlineCompletionsAccessibilityVerbose";
|
||
})(EditorOption || (exports.EditorOption = EditorOption = {}));
|
||
/**
|
||
* End of line character preference.
|
||
*/
|
||
var EndOfLinePreference;
|
||
(function (EndOfLinePreference) {
|
||
/**
|
||
* Use the end of line character identified in the text buffer.
|
||
*/
|
||
EndOfLinePreference[EndOfLinePreference["TextDefined"] = 0] = "TextDefined";
|
||
/**
|
||
* Use line feed (\n) as the end of line character.
|
||
*/
|
||
EndOfLinePreference[EndOfLinePreference["LF"] = 1] = "LF";
|
||
/**
|
||
* Use carriage return and line feed (\r\n) as the end of line character.
|
||
*/
|
||
EndOfLinePreference[EndOfLinePreference["CRLF"] = 2] = "CRLF";
|
||
})(EndOfLinePreference || (exports.EndOfLinePreference = EndOfLinePreference = {}));
|
||
/**
|
||
* End of line character preference.
|
||
*/
|
||
var EndOfLineSequence;
|
||
(function (EndOfLineSequence) {
|
||
/**
|
||
* Use line feed (\n) as the end of line character.
|
||
*/
|
||
EndOfLineSequence[EndOfLineSequence["LF"] = 0] = "LF";
|
||
/**
|
||
* Use carriage return and line feed (\r\n) as the end of line character.
|
||
*/
|
||
EndOfLineSequence[EndOfLineSequence["CRLF"] = 1] = "CRLF";
|
||
})(EndOfLineSequence || (exports.EndOfLineSequence = EndOfLineSequence = {}));
|
||
/**
|
||
* Vertical Lane in the glyph margin of the editor.
|
||
*/
|
||
var GlyphMarginLane;
|
||
(function (GlyphMarginLane) {
|
||
GlyphMarginLane[GlyphMarginLane["Left"] = 1] = "Left";
|
||
GlyphMarginLane[GlyphMarginLane["Center"] = 2] = "Center";
|
||
GlyphMarginLane[GlyphMarginLane["Right"] = 3] = "Right";
|
||
})(GlyphMarginLane || (exports.GlyphMarginLane = GlyphMarginLane = {}));
|
||
var HoverVerbosityAction;
|
||
(function (HoverVerbosityAction) {
|
||
/**
|
||
* Increase the verbosity of the hover
|
||
*/
|
||
HoverVerbosityAction[HoverVerbosityAction["Increase"] = 0] = "Increase";
|
||
/**
|
||
* Decrease the verbosity of the hover
|
||
*/
|
||
HoverVerbosityAction[HoverVerbosityAction["Decrease"] = 1] = "Decrease";
|
||
})(HoverVerbosityAction || (exports.HoverVerbosityAction = HoverVerbosityAction = {}));
|
||
/**
|
||
* Describes what to do with the indentation when pressing Enter.
|
||
*/
|
||
var IndentAction;
|
||
(function (IndentAction) {
|
||
/**
|
||
* Insert new line and copy the previous line's indentation.
|
||
*/
|
||
IndentAction[IndentAction["None"] = 0] = "None";
|
||
/**
|
||
* Insert new line and indent once (relative to the previous line's indentation).
|
||
*/
|
||
IndentAction[IndentAction["Indent"] = 1] = "Indent";
|
||
/**
|
||
* Insert two new lines:
|
||
* - the first one indented which will hold the cursor
|
||
* - the second one at the same indentation level
|
||
*/
|
||
IndentAction[IndentAction["IndentOutdent"] = 2] = "IndentOutdent";
|
||
/**
|
||
* Insert new line and outdent once (relative to the previous line's indentation).
|
||
*/
|
||
IndentAction[IndentAction["Outdent"] = 3] = "Outdent";
|
||
})(IndentAction || (exports.IndentAction = IndentAction = {}));
|
||
var InjectedTextCursorStops;
|
||
(function (InjectedTextCursorStops) {
|
||
InjectedTextCursorStops[InjectedTextCursorStops["Both"] = 0] = "Both";
|
||
InjectedTextCursorStops[InjectedTextCursorStops["Right"] = 1] = "Right";
|
||
InjectedTextCursorStops[InjectedTextCursorStops["Left"] = 2] = "Left";
|
||
InjectedTextCursorStops[InjectedTextCursorStops["None"] = 3] = "None";
|
||
})(InjectedTextCursorStops || (exports.InjectedTextCursorStops = InjectedTextCursorStops = {}));
|
||
var InlayHintKind;
|
||
(function (InlayHintKind) {
|
||
InlayHintKind[InlayHintKind["Type"] = 1] = "Type";
|
||
InlayHintKind[InlayHintKind["Parameter"] = 2] = "Parameter";
|
||
})(InlayHintKind || (exports.InlayHintKind = InlayHintKind = {}));
|
||
/**
|
||
* How an {@link InlineCompletionsProvider inline completion provider} was triggered.
|
||
*/
|
||
var InlineCompletionTriggerKind;
|
||
(function (InlineCompletionTriggerKind) {
|
||
/**
|
||
* Completion was triggered automatically while editing.
|
||
* It is sufficient to return a single completion item in this case.
|
||
*/
|
||
InlineCompletionTriggerKind[InlineCompletionTriggerKind["Automatic"] = 0] = "Automatic";
|
||
/**
|
||
* Completion was triggered explicitly by a user gesture.
|
||
* Return multiple completion items to enable cycling through them.
|
||
*/
|
||
InlineCompletionTriggerKind[InlineCompletionTriggerKind["Explicit"] = 1] = "Explicit";
|
||
})(InlineCompletionTriggerKind || (exports.InlineCompletionTriggerKind = InlineCompletionTriggerKind = {}));
|
||
var InlineEditTriggerKind;
|
||
(function (InlineEditTriggerKind) {
|
||
InlineEditTriggerKind[InlineEditTriggerKind["Invoke"] = 0] = "Invoke";
|
||
InlineEditTriggerKind[InlineEditTriggerKind["Automatic"] = 1] = "Automatic";
|
||
})(InlineEditTriggerKind || (exports.InlineEditTriggerKind = InlineEditTriggerKind = {}));
|
||
/**
|
||
* Virtual Key Codes, the value does not hold any inherent meaning.
|
||
* Inspired somewhat from https://msdn.microsoft.com/en-us/library/windows/desktop/dd375731(v=vs.85).aspx
|
||
* But these are "more general", as they should work across browsers & OS`s.
|
||
*/
|
||
var KeyCode;
|
||
(function (KeyCode) {
|
||
KeyCode[KeyCode["DependsOnKbLayout"] = -1] = "DependsOnKbLayout";
|
||
/**
|
||
* Placed first to cover the 0 value of the enum.
|
||
*/
|
||
KeyCode[KeyCode["Unknown"] = 0] = "Unknown";
|
||
KeyCode[KeyCode["Backspace"] = 1] = "Backspace";
|
||
KeyCode[KeyCode["Tab"] = 2] = "Tab";
|
||
KeyCode[KeyCode["Enter"] = 3] = "Enter";
|
||
KeyCode[KeyCode["Shift"] = 4] = "Shift";
|
||
KeyCode[KeyCode["Ctrl"] = 5] = "Ctrl";
|
||
KeyCode[KeyCode["Alt"] = 6] = "Alt";
|
||
KeyCode[KeyCode["PauseBreak"] = 7] = "PauseBreak";
|
||
KeyCode[KeyCode["CapsLock"] = 8] = "CapsLock";
|
||
KeyCode[KeyCode["Escape"] = 9] = "Escape";
|
||
KeyCode[KeyCode["Space"] = 10] = "Space";
|
||
KeyCode[KeyCode["PageUp"] = 11] = "PageUp";
|
||
KeyCode[KeyCode["PageDown"] = 12] = "PageDown";
|
||
KeyCode[KeyCode["End"] = 13] = "End";
|
||
KeyCode[KeyCode["Home"] = 14] = "Home";
|
||
KeyCode[KeyCode["LeftArrow"] = 15] = "LeftArrow";
|
||
KeyCode[KeyCode["UpArrow"] = 16] = "UpArrow";
|
||
KeyCode[KeyCode["RightArrow"] = 17] = "RightArrow";
|
||
KeyCode[KeyCode["DownArrow"] = 18] = "DownArrow";
|
||
KeyCode[KeyCode["Insert"] = 19] = "Insert";
|
||
KeyCode[KeyCode["Delete"] = 20] = "Delete";
|
||
KeyCode[KeyCode["Digit0"] = 21] = "Digit0";
|
||
KeyCode[KeyCode["Digit1"] = 22] = "Digit1";
|
||
KeyCode[KeyCode["Digit2"] = 23] = "Digit2";
|
||
KeyCode[KeyCode["Digit3"] = 24] = "Digit3";
|
||
KeyCode[KeyCode["Digit4"] = 25] = "Digit4";
|
||
KeyCode[KeyCode["Digit5"] = 26] = "Digit5";
|
||
KeyCode[KeyCode["Digit6"] = 27] = "Digit6";
|
||
KeyCode[KeyCode["Digit7"] = 28] = "Digit7";
|
||
KeyCode[KeyCode["Digit8"] = 29] = "Digit8";
|
||
KeyCode[KeyCode["Digit9"] = 30] = "Digit9";
|
||
KeyCode[KeyCode["KeyA"] = 31] = "KeyA";
|
||
KeyCode[KeyCode["KeyB"] = 32] = "KeyB";
|
||
KeyCode[KeyCode["KeyC"] = 33] = "KeyC";
|
||
KeyCode[KeyCode["KeyD"] = 34] = "KeyD";
|
||
KeyCode[KeyCode["KeyE"] = 35] = "KeyE";
|
||
KeyCode[KeyCode["KeyF"] = 36] = "KeyF";
|
||
KeyCode[KeyCode["KeyG"] = 37] = "KeyG";
|
||
KeyCode[KeyCode["KeyH"] = 38] = "KeyH";
|
||
KeyCode[KeyCode["KeyI"] = 39] = "KeyI";
|
||
KeyCode[KeyCode["KeyJ"] = 40] = "KeyJ";
|
||
KeyCode[KeyCode["KeyK"] = 41] = "KeyK";
|
||
KeyCode[KeyCode["KeyL"] = 42] = "KeyL";
|
||
KeyCode[KeyCode["KeyM"] = 43] = "KeyM";
|
||
KeyCode[KeyCode["KeyN"] = 44] = "KeyN";
|
||
KeyCode[KeyCode["KeyO"] = 45] = "KeyO";
|
||
KeyCode[KeyCode["KeyP"] = 46] = "KeyP";
|
||
KeyCode[KeyCode["KeyQ"] = 47] = "KeyQ";
|
||
KeyCode[KeyCode["KeyR"] = 48] = "KeyR";
|
||
KeyCode[KeyCode["KeyS"] = 49] = "KeyS";
|
||
KeyCode[KeyCode["KeyT"] = 50] = "KeyT";
|
||
KeyCode[KeyCode["KeyU"] = 51] = "KeyU";
|
||
KeyCode[KeyCode["KeyV"] = 52] = "KeyV";
|
||
KeyCode[KeyCode["KeyW"] = 53] = "KeyW";
|
||
KeyCode[KeyCode["KeyX"] = 54] = "KeyX";
|
||
KeyCode[KeyCode["KeyY"] = 55] = "KeyY";
|
||
KeyCode[KeyCode["KeyZ"] = 56] = "KeyZ";
|
||
KeyCode[KeyCode["Meta"] = 57] = "Meta";
|
||
KeyCode[KeyCode["ContextMenu"] = 58] = "ContextMenu";
|
||
KeyCode[KeyCode["F1"] = 59] = "F1";
|
||
KeyCode[KeyCode["F2"] = 60] = "F2";
|
||
KeyCode[KeyCode["F3"] = 61] = "F3";
|
||
KeyCode[KeyCode["F4"] = 62] = "F4";
|
||
KeyCode[KeyCode["F5"] = 63] = "F5";
|
||
KeyCode[KeyCode["F6"] = 64] = "F6";
|
||
KeyCode[KeyCode["F7"] = 65] = "F7";
|
||
KeyCode[KeyCode["F8"] = 66] = "F8";
|
||
KeyCode[KeyCode["F9"] = 67] = "F9";
|
||
KeyCode[KeyCode["F10"] = 68] = "F10";
|
||
KeyCode[KeyCode["F11"] = 69] = "F11";
|
||
KeyCode[KeyCode["F12"] = 70] = "F12";
|
||
KeyCode[KeyCode["F13"] = 71] = "F13";
|
||
KeyCode[KeyCode["F14"] = 72] = "F14";
|
||
KeyCode[KeyCode["F15"] = 73] = "F15";
|
||
KeyCode[KeyCode["F16"] = 74] = "F16";
|
||
KeyCode[KeyCode["F17"] = 75] = "F17";
|
||
KeyCode[KeyCode["F18"] = 76] = "F18";
|
||
KeyCode[KeyCode["F19"] = 77] = "F19";
|
||
KeyCode[KeyCode["F20"] = 78] = "F20";
|
||
KeyCode[KeyCode["F21"] = 79] = "F21";
|
||
KeyCode[KeyCode["F22"] = 80] = "F22";
|
||
KeyCode[KeyCode["F23"] = 81] = "F23";
|
||
KeyCode[KeyCode["F24"] = 82] = "F24";
|
||
KeyCode[KeyCode["NumLock"] = 83] = "NumLock";
|
||
KeyCode[KeyCode["ScrollLock"] = 84] = "ScrollLock";
|
||
/**
|
||
* Used for miscellaneous characters; it can vary by keyboard.
|
||
* For the US standard keyboard, the ';:' key
|
||
*/
|
||
KeyCode[KeyCode["Semicolon"] = 85] = "Semicolon";
|
||
/**
|
||
* For any country/region, the '+' key
|
||
* For the US standard keyboard, the '=+' key
|
||
*/
|
||
KeyCode[KeyCode["Equal"] = 86] = "Equal";
|
||
/**
|
||
* For any country/region, the ',' key
|
||
* For the US standard keyboard, the ',<' key
|
||
*/
|
||
KeyCode[KeyCode["Comma"] = 87] = "Comma";
|
||
/**
|
||
* For any country/region, the '-' key
|
||
* For the US standard keyboard, the '-_' key
|
||
*/
|
||
KeyCode[KeyCode["Minus"] = 88] = "Minus";
|
||
/**
|
||
* For any country/region, the '.' key
|
||
* For the US standard keyboard, the '.>' key
|
||
*/
|
||
KeyCode[KeyCode["Period"] = 89] = "Period";
|
||
/**
|
||
* Used for miscellaneous characters; it can vary by keyboard.
|
||
* For the US standard keyboard, the '/?' key
|
||
*/
|
||
KeyCode[KeyCode["Slash"] = 90] = "Slash";
|
||
/**
|
||
* Used for miscellaneous characters; it can vary by keyboard.
|
||
* For the US standard keyboard, the '`~' key
|
||
*/
|
||
KeyCode[KeyCode["Backquote"] = 91] = "Backquote";
|
||
/**
|
||
* Used for miscellaneous characters; it can vary by keyboard.
|
||
* For the US standard keyboard, the '[{' key
|
||
*/
|
||
KeyCode[KeyCode["BracketLeft"] = 92] = "BracketLeft";
|
||
/**
|
||
* Used for miscellaneous characters; it can vary by keyboard.
|
||
* For the US standard keyboard, the '\|' key
|
||
*/
|
||
KeyCode[KeyCode["Backslash"] = 93] = "Backslash";
|
||
/**
|
||
* Used for miscellaneous characters; it can vary by keyboard.
|
||
* For the US standard keyboard, the ']}' key
|
||
*/
|
||
KeyCode[KeyCode["BracketRight"] = 94] = "BracketRight";
|
||
/**
|
||
* Used for miscellaneous characters; it can vary by keyboard.
|
||
* For the US standard keyboard, the ''"' key
|
||
*/
|
||
KeyCode[KeyCode["Quote"] = 95] = "Quote";
|
||
/**
|
||
* Used for miscellaneous characters; it can vary by keyboard.
|
||
*/
|
||
KeyCode[KeyCode["OEM_8"] = 96] = "OEM_8";
|
||
/**
|
||
* Either the angle bracket key or the backslash key on the RT 102-key keyboard.
|
||
*/
|
||
KeyCode[KeyCode["IntlBackslash"] = 97] = "IntlBackslash";
|
||
KeyCode[KeyCode["Numpad0"] = 98] = "Numpad0";
|
||
KeyCode[KeyCode["Numpad1"] = 99] = "Numpad1";
|
||
KeyCode[KeyCode["Numpad2"] = 100] = "Numpad2";
|
||
KeyCode[KeyCode["Numpad3"] = 101] = "Numpad3";
|
||
KeyCode[KeyCode["Numpad4"] = 102] = "Numpad4";
|
||
KeyCode[KeyCode["Numpad5"] = 103] = "Numpad5";
|
||
KeyCode[KeyCode["Numpad6"] = 104] = "Numpad6";
|
||
KeyCode[KeyCode["Numpad7"] = 105] = "Numpad7";
|
||
KeyCode[KeyCode["Numpad8"] = 106] = "Numpad8";
|
||
KeyCode[KeyCode["Numpad9"] = 107] = "Numpad9";
|
||
KeyCode[KeyCode["NumpadMultiply"] = 108] = "NumpadMultiply";
|
||
KeyCode[KeyCode["NumpadAdd"] = 109] = "NumpadAdd";
|
||
KeyCode[KeyCode["NUMPAD_SEPARATOR"] = 110] = "NUMPAD_SEPARATOR";
|
||
KeyCode[KeyCode["NumpadSubtract"] = 111] = "NumpadSubtract";
|
||
KeyCode[KeyCode["NumpadDecimal"] = 112] = "NumpadDecimal";
|
||
KeyCode[KeyCode["NumpadDivide"] = 113] = "NumpadDivide";
|
||
/**
|
||
* Cover all key codes when IME is processing input.
|
||
*/
|
||
KeyCode[KeyCode["KEY_IN_COMPOSITION"] = 114] = "KEY_IN_COMPOSITION";
|
||
KeyCode[KeyCode["ABNT_C1"] = 115] = "ABNT_C1";
|
||
KeyCode[KeyCode["ABNT_C2"] = 116] = "ABNT_C2";
|
||
KeyCode[KeyCode["AudioVolumeMute"] = 117] = "AudioVolumeMute";
|
||
KeyCode[KeyCode["AudioVolumeUp"] = 118] = "AudioVolumeUp";
|
||
KeyCode[KeyCode["AudioVolumeDown"] = 119] = "AudioVolumeDown";
|
||
KeyCode[KeyCode["BrowserSearch"] = 120] = "BrowserSearch";
|
||
KeyCode[KeyCode["BrowserHome"] = 121] = "BrowserHome";
|
||
KeyCode[KeyCode["BrowserBack"] = 122] = "BrowserBack";
|
||
KeyCode[KeyCode["BrowserForward"] = 123] = "BrowserForward";
|
||
KeyCode[KeyCode["MediaTrackNext"] = 124] = "MediaTrackNext";
|
||
KeyCode[KeyCode["MediaTrackPrevious"] = 125] = "MediaTrackPrevious";
|
||
KeyCode[KeyCode["MediaStop"] = 126] = "MediaStop";
|
||
KeyCode[KeyCode["MediaPlayPause"] = 127] = "MediaPlayPause";
|
||
KeyCode[KeyCode["LaunchMediaPlayer"] = 128] = "LaunchMediaPlayer";
|
||
KeyCode[KeyCode["LaunchMail"] = 129] = "LaunchMail";
|
||
KeyCode[KeyCode["LaunchApp2"] = 130] = "LaunchApp2";
|
||
/**
|
||
* VK_CLEAR, 0x0C, CLEAR key
|
||
*/
|
||
KeyCode[KeyCode["Clear"] = 131] = "Clear";
|
||
/**
|
||
* Placed last to cover the length of the enum.
|
||
* Please do not depend on this value!
|
||
*/
|
||
KeyCode[KeyCode["MAX_VALUE"] = 132] = "MAX_VALUE";
|
||
})(KeyCode || (exports.KeyCode = KeyCode = {}));
|
||
var MarkerSeverity;
|
||
(function (MarkerSeverity) {
|
||
MarkerSeverity[MarkerSeverity["Hint"] = 1] = "Hint";
|
||
MarkerSeverity[MarkerSeverity["Info"] = 2] = "Info";
|
||
MarkerSeverity[MarkerSeverity["Warning"] = 4] = "Warning";
|
||
MarkerSeverity[MarkerSeverity["Error"] = 8] = "Error";
|
||
})(MarkerSeverity || (exports.MarkerSeverity = MarkerSeverity = {}));
|
||
var MarkerTag;
|
||
(function (MarkerTag) {
|
||
MarkerTag[MarkerTag["Unnecessary"] = 1] = "Unnecessary";
|
||
MarkerTag[MarkerTag["Deprecated"] = 2] = "Deprecated";
|
||
})(MarkerTag || (exports.MarkerTag = MarkerTag = {}));
|
||
/**
|
||
* Position in the minimap to render the decoration.
|
||
*/
|
||
var MinimapPosition;
|
||
(function (MinimapPosition) {
|
||
MinimapPosition[MinimapPosition["Inline"] = 1] = "Inline";
|
||
MinimapPosition[MinimapPosition["Gutter"] = 2] = "Gutter";
|
||
})(MinimapPosition || (exports.MinimapPosition = MinimapPosition = {}));
|
||
/**
|
||
* Section header style.
|
||
*/
|
||
var MinimapSectionHeaderStyle;
|
||
(function (MinimapSectionHeaderStyle) {
|
||
MinimapSectionHeaderStyle[MinimapSectionHeaderStyle["Normal"] = 1] = "Normal";
|
||
MinimapSectionHeaderStyle[MinimapSectionHeaderStyle["Underlined"] = 2] = "Underlined";
|
||
})(MinimapSectionHeaderStyle || (exports.MinimapSectionHeaderStyle = MinimapSectionHeaderStyle = {}));
|
||
/**
|
||
* Type of hit element with the mouse in the editor.
|
||
*/
|
||
var MouseTargetType;
|
||
(function (MouseTargetType) {
|
||
/**
|
||
* Mouse is on top of an unknown element.
|
||
*/
|
||
MouseTargetType[MouseTargetType["UNKNOWN"] = 0] = "UNKNOWN";
|
||
/**
|
||
* Mouse is on top of the textarea used for input.
|
||
*/
|
||
MouseTargetType[MouseTargetType["TEXTAREA"] = 1] = "TEXTAREA";
|
||
/**
|
||
* Mouse is on top of the glyph margin
|
||
*/
|
||
MouseTargetType[MouseTargetType["GUTTER_GLYPH_MARGIN"] = 2] = "GUTTER_GLYPH_MARGIN";
|
||
/**
|
||
* Mouse is on top of the line numbers
|
||
*/
|
||
MouseTargetType[MouseTargetType["GUTTER_LINE_NUMBERS"] = 3] = "GUTTER_LINE_NUMBERS";
|
||
/**
|
||
* Mouse is on top of the line decorations
|
||
*/
|
||
MouseTargetType[MouseTargetType["GUTTER_LINE_DECORATIONS"] = 4] = "GUTTER_LINE_DECORATIONS";
|
||
/**
|
||
* Mouse is on top of the whitespace left in the gutter by a view zone.
|
||
*/
|
||
MouseTargetType[MouseTargetType["GUTTER_VIEW_ZONE"] = 5] = "GUTTER_VIEW_ZONE";
|
||
/**
|
||
* Mouse is on top of text in the content.
|
||
*/
|
||
MouseTargetType[MouseTargetType["CONTENT_TEXT"] = 6] = "CONTENT_TEXT";
|
||
/**
|
||
* Mouse is on top of empty space in the content (e.g. after line text or below last line)
|
||
*/
|
||
MouseTargetType[MouseTargetType["CONTENT_EMPTY"] = 7] = "CONTENT_EMPTY";
|
||
/**
|
||
* Mouse is on top of a view zone in the content.
|
||
*/
|
||
MouseTargetType[MouseTargetType["CONTENT_VIEW_ZONE"] = 8] = "CONTENT_VIEW_ZONE";
|
||
/**
|
||
* Mouse is on top of a content widget.
|
||
*/
|
||
MouseTargetType[MouseTargetType["CONTENT_WIDGET"] = 9] = "CONTENT_WIDGET";
|
||
/**
|
||
* Mouse is on top of the decorations overview ruler.
|
||
*/
|
||
MouseTargetType[MouseTargetType["OVERVIEW_RULER"] = 10] = "OVERVIEW_RULER";
|
||
/**
|
||
* Mouse is on top of a scrollbar.
|
||
*/
|
||
MouseTargetType[MouseTargetType["SCROLLBAR"] = 11] = "SCROLLBAR";
|
||
/**
|
||
* Mouse is on top of an overlay widget.
|
||
*/
|
||
MouseTargetType[MouseTargetType["OVERLAY_WIDGET"] = 12] = "OVERLAY_WIDGET";
|
||
/**
|
||
* Mouse is outside of the editor.
|
||
*/
|
||
MouseTargetType[MouseTargetType["OUTSIDE_EDITOR"] = 13] = "OUTSIDE_EDITOR";
|
||
})(MouseTargetType || (exports.MouseTargetType = MouseTargetType = {}));
|
||
var NewSymbolNameTag;
|
||
(function (NewSymbolNameTag) {
|
||
NewSymbolNameTag[NewSymbolNameTag["AIGenerated"] = 1] = "AIGenerated";
|
||
})(NewSymbolNameTag || (exports.NewSymbolNameTag = NewSymbolNameTag = {}));
|
||
var NewSymbolNameTriggerKind;
|
||
(function (NewSymbolNameTriggerKind) {
|
||
NewSymbolNameTriggerKind[NewSymbolNameTriggerKind["Invoke"] = 0] = "Invoke";
|
||
NewSymbolNameTriggerKind[NewSymbolNameTriggerKind["Automatic"] = 1] = "Automatic";
|
||
})(NewSymbolNameTriggerKind || (exports.NewSymbolNameTriggerKind = NewSymbolNameTriggerKind = {}));
|
||
/**
|
||
* A positioning preference for rendering overlay widgets.
|
||
*/
|
||
var OverlayWidgetPositionPreference;
|
||
(function (OverlayWidgetPositionPreference) {
|
||
/**
|
||
* Position the overlay widget in the top right corner
|
||
*/
|
||
OverlayWidgetPositionPreference[OverlayWidgetPositionPreference["TOP_RIGHT_CORNER"] = 0] = "TOP_RIGHT_CORNER";
|
||
/**
|
||
* Position the overlay widget in the bottom right corner
|
||
*/
|
||
OverlayWidgetPositionPreference[OverlayWidgetPositionPreference["BOTTOM_RIGHT_CORNER"] = 1] = "BOTTOM_RIGHT_CORNER";
|
||
/**
|
||
* Position the overlay widget in the top center
|
||
*/
|
||
OverlayWidgetPositionPreference[OverlayWidgetPositionPreference["TOP_CENTER"] = 2] = "TOP_CENTER";
|
||
})(OverlayWidgetPositionPreference || (exports.OverlayWidgetPositionPreference = OverlayWidgetPositionPreference = {}));
|
||
/**
|
||
* Vertical Lane in the overview ruler of the editor.
|
||
*/
|
||
var OverviewRulerLane;
|
||
(function (OverviewRulerLane) {
|
||
OverviewRulerLane[OverviewRulerLane["Left"] = 1] = "Left";
|
||
OverviewRulerLane[OverviewRulerLane["Center"] = 2] = "Center";
|
||
OverviewRulerLane[OverviewRulerLane["Right"] = 4] = "Right";
|
||
OverviewRulerLane[OverviewRulerLane["Full"] = 7] = "Full";
|
||
})(OverviewRulerLane || (exports.OverviewRulerLane = OverviewRulerLane = {}));
|
||
/**
|
||
* How a partial acceptance was triggered.
|
||
*/
|
||
var PartialAcceptTriggerKind;
|
||
(function (PartialAcceptTriggerKind) {
|
||
PartialAcceptTriggerKind[PartialAcceptTriggerKind["Word"] = 0] = "Word";
|
||
PartialAcceptTriggerKind[PartialAcceptTriggerKind["Line"] = 1] = "Line";
|
||
PartialAcceptTriggerKind[PartialAcceptTriggerKind["Suggest"] = 2] = "Suggest";
|
||
})(PartialAcceptTriggerKind || (exports.PartialAcceptTriggerKind = PartialAcceptTriggerKind = {}));
|
||
var PositionAffinity;
|
||
(function (PositionAffinity) {
|
||
/**
|
||
* Prefers the left most position.
|
||
*/
|
||
PositionAffinity[PositionAffinity["Left"] = 0] = "Left";
|
||
/**
|
||
* Prefers the right most position.
|
||
*/
|
||
PositionAffinity[PositionAffinity["Right"] = 1] = "Right";
|
||
/**
|
||
* No preference.
|
||
*/
|
||
PositionAffinity[PositionAffinity["None"] = 2] = "None";
|
||
/**
|
||
* If the given position is on injected text, prefers the position left of it.
|
||
*/
|
||
PositionAffinity[PositionAffinity["LeftOfInjectedText"] = 3] = "LeftOfInjectedText";
|
||
/**
|
||
* If the given position is on injected text, prefers the position right of it.
|
||
*/
|
||
PositionAffinity[PositionAffinity["RightOfInjectedText"] = 4] = "RightOfInjectedText";
|
||
})(PositionAffinity || (exports.PositionAffinity = PositionAffinity = {}));
|
||
var RenderLineNumbersType;
|
||
(function (RenderLineNumbersType) {
|
||
RenderLineNumbersType[RenderLineNumbersType["Off"] = 0] = "Off";
|
||
RenderLineNumbersType[RenderLineNumbersType["On"] = 1] = "On";
|
||
RenderLineNumbersType[RenderLineNumbersType["Relative"] = 2] = "Relative";
|
||
RenderLineNumbersType[RenderLineNumbersType["Interval"] = 3] = "Interval";
|
||
RenderLineNumbersType[RenderLineNumbersType["Custom"] = 4] = "Custom";
|
||
})(RenderLineNumbersType || (exports.RenderLineNumbersType = RenderLineNumbersType = {}));
|
||
var RenderMinimap;
|
||
(function (RenderMinimap) {
|
||
RenderMinimap[RenderMinimap["None"] = 0] = "None";
|
||
RenderMinimap[RenderMinimap["Text"] = 1] = "Text";
|
||
RenderMinimap[RenderMinimap["Blocks"] = 2] = "Blocks";
|
||
})(RenderMinimap || (exports.RenderMinimap = RenderMinimap = {}));
|
||
var ScrollType;
|
||
(function (ScrollType) {
|
||
ScrollType[ScrollType["Smooth"] = 0] = "Smooth";
|
||
ScrollType[ScrollType["Immediate"] = 1] = "Immediate";
|
||
})(ScrollType || (exports.ScrollType = ScrollType = {}));
|
||
var ScrollbarVisibility;
|
||
(function (ScrollbarVisibility) {
|
||
ScrollbarVisibility[ScrollbarVisibility["Auto"] = 1] = "Auto";
|
||
ScrollbarVisibility[ScrollbarVisibility["Hidden"] = 2] = "Hidden";
|
||
ScrollbarVisibility[ScrollbarVisibility["Visible"] = 3] = "Visible";
|
||
})(ScrollbarVisibility || (exports.ScrollbarVisibility = ScrollbarVisibility = {}));
|
||
/**
|
||
* The direction of a selection.
|
||
*/
|
||
var SelectionDirection;
|
||
(function (SelectionDirection) {
|
||
/**
|
||
* The selection starts above where it ends.
|
||
*/
|
||
SelectionDirection[SelectionDirection["LTR"] = 0] = "LTR";
|
||
/**
|
||
* The selection starts below where it ends.
|
||
*/
|
||
SelectionDirection[SelectionDirection["RTL"] = 1] = "RTL";
|
||
})(SelectionDirection || (exports.SelectionDirection = SelectionDirection = {}));
|
||
var ShowLightbulbIconMode;
|
||
(function (ShowLightbulbIconMode) {
|
||
ShowLightbulbIconMode["Off"] = "off";
|
||
ShowLightbulbIconMode["OnCode"] = "onCode";
|
||
ShowLightbulbIconMode["On"] = "on";
|
||
})(ShowLightbulbIconMode || (exports.ShowLightbulbIconMode = ShowLightbulbIconMode = {}));
|
||
var SignatureHelpTriggerKind;
|
||
(function (SignatureHelpTriggerKind) {
|
||
SignatureHelpTriggerKind[SignatureHelpTriggerKind["Invoke"] = 1] = "Invoke";
|
||
SignatureHelpTriggerKind[SignatureHelpTriggerKind["TriggerCharacter"] = 2] = "TriggerCharacter";
|
||
SignatureHelpTriggerKind[SignatureHelpTriggerKind["ContentChange"] = 3] = "ContentChange";
|
||
})(SignatureHelpTriggerKind || (exports.SignatureHelpTriggerKind = SignatureHelpTriggerKind = {}));
|
||
/**
|
||
* A symbol kind.
|
||
*/
|
||
var SymbolKind;
|
||
(function (SymbolKind) {
|
||
SymbolKind[SymbolKind["File"] = 0] = "File";
|
||
SymbolKind[SymbolKind["Module"] = 1] = "Module";
|
||
SymbolKind[SymbolKind["Namespace"] = 2] = "Namespace";
|
||
SymbolKind[SymbolKind["Package"] = 3] = "Package";
|
||
SymbolKind[SymbolKind["Class"] = 4] = "Class";
|
||
SymbolKind[SymbolKind["Method"] = 5] = "Method";
|
||
SymbolKind[SymbolKind["Property"] = 6] = "Property";
|
||
SymbolKind[SymbolKind["Field"] = 7] = "Field";
|
||
SymbolKind[SymbolKind["Constructor"] = 8] = "Constructor";
|
||
SymbolKind[SymbolKind["Enum"] = 9] = "Enum";
|
||
SymbolKind[SymbolKind["Interface"] = 10] = "Interface";
|
||
SymbolKind[SymbolKind["Function"] = 11] = "Function";
|
||
SymbolKind[SymbolKind["Variable"] = 12] = "Variable";
|
||
SymbolKind[SymbolKind["Constant"] = 13] = "Constant";
|
||
SymbolKind[SymbolKind["String"] = 14] = "String";
|
||
SymbolKind[SymbolKind["Number"] = 15] = "Number";
|
||
SymbolKind[SymbolKind["Boolean"] = 16] = "Boolean";
|
||
SymbolKind[SymbolKind["Array"] = 17] = "Array";
|
||
SymbolKind[SymbolKind["Object"] = 18] = "Object";
|
||
SymbolKind[SymbolKind["Key"] = 19] = "Key";
|
||
SymbolKind[SymbolKind["Null"] = 20] = "Null";
|
||
SymbolKind[SymbolKind["EnumMember"] = 21] = "EnumMember";
|
||
SymbolKind[SymbolKind["Struct"] = 22] = "Struct";
|
||
SymbolKind[SymbolKind["Event"] = 23] = "Event";
|
||
SymbolKind[SymbolKind["Operator"] = 24] = "Operator";
|
||
SymbolKind[SymbolKind["TypeParameter"] = 25] = "TypeParameter";
|
||
})(SymbolKind || (exports.SymbolKind = SymbolKind = {}));
|
||
var SymbolTag;
|
||
(function (SymbolTag) {
|
||
SymbolTag[SymbolTag["Deprecated"] = 1] = "Deprecated";
|
||
})(SymbolTag || (exports.SymbolTag = SymbolTag = {}));
|
||
/**
|
||
* The kind of animation in which the editor's cursor should be rendered.
|
||
*/
|
||
var TextEditorCursorBlinkingStyle;
|
||
(function (TextEditorCursorBlinkingStyle) {
|
||
/**
|
||
* Hidden
|
||
*/
|
||
TextEditorCursorBlinkingStyle[TextEditorCursorBlinkingStyle["Hidden"] = 0] = "Hidden";
|
||
/**
|
||
* Blinking
|
||
*/
|
||
TextEditorCursorBlinkingStyle[TextEditorCursorBlinkingStyle["Blink"] = 1] = "Blink";
|
||
/**
|
||
* Blinking with smooth fading
|
||
*/
|
||
TextEditorCursorBlinkingStyle[TextEditorCursorBlinkingStyle["Smooth"] = 2] = "Smooth";
|
||
/**
|
||
* Blinking with prolonged filled state and smooth fading
|
||
*/
|
||
TextEditorCursorBlinkingStyle[TextEditorCursorBlinkingStyle["Phase"] = 3] = "Phase";
|
||
/**
|
||
* Expand collapse animation on the y axis
|
||
*/
|
||
TextEditorCursorBlinkingStyle[TextEditorCursorBlinkingStyle["Expand"] = 4] = "Expand";
|
||
/**
|
||
* No-Blinking
|
||
*/
|
||
TextEditorCursorBlinkingStyle[TextEditorCursorBlinkingStyle["Solid"] = 5] = "Solid";
|
||
})(TextEditorCursorBlinkingStyle || (exports.TextEditorCursorBlinkingStyle = TextEditorCursorBlinkingStyle = {}));
|
||
/**
|
||
* The style in which the editor's cursor should be rendered.
|
||
*/
|
||
var TextEditorCursorStyle;
|
||
(function (TextEditorCursorStyle) {
|
||
/**
|
||
* As a vertical line (sitting between two characters).
|
||
*/
|
||
TextEditorCursorStyle[TextEditorCursorStyle["Line"] = 1] = "Line";
|
||
/**
|
||
* As a block (sitting on top of a character).
|
||
*/
|
||
TextEditorCursorStyle[TextEditorCursorStyle["Block"] = 2] = "Block";
|
||
/**
|
||
* As a horizontal line (sitting under a character).
|
||
*/
|
||
TextEditorCursorStyle[TextEditorCursorStyle["Underline"] = 3] = "Underline";
|
||
/**
|
||
* As a thin vertical line (sitting between two characters).
|
||
*/
|
||
TextEditorCursorStyle[TextEditorCursorStyle["LineThin"] = 4] = "LineThin";
|
||
/**
|
||
* As an outlined block (sitting on top of a character).
|
||
*/
|
||
TextEditorCursorStyle[TextEditorCursorStyle["BlockOutline"] = 5] = "BlockOutline";
|
||
/**
|
||
* As a thin horizontal line (sitting under a character).
|
||
*/
|
||
TextEditorCursorStyle[TextEditorCursorStyle["UnderlineThin"] = 6] = "UnderlineThin";
|
||
})(TextEditorCursorStyle || (exports.TextEditorCursorStyle = TextEditorCursorStyle = {}));
|
||
/**
|
||
* Describes the behavior of decorations when typing/editing near their edges.
|
||
* Note: Please do not edit the values, as they very carefully match `DecorationRangeBehavior`
|
||
*/
|
||
var TrackedRangeStickiness;
|
||
(function (TrackedRangeStickiness) {
|
||
TrackedRangeStickiness[TrackedRangeStickiness["AlwaysGrowsWhenTypingAtEdges"] = 0] = "AlwaysGrowsWhenTypingAtEdges";
|
||
TrackedRangeStickiness[TrackedRangeStickiness["NeverGrowsWhenTypingAtEdges"] = 1] = "NeverGrowsWhenTypingAtEdges";
|
||
TrackedRangeStickiness[TrackedRangeStickiness["GrowsOnlyWhenTypingBefore"] = 2] = "GrowsOnlyWhenTypingBefore";
|
||
TrackedRangeStickiness[TrackedRangeStickiness["GrowsOnlyWhenTypingAfter"] = 3] = "GrowsOnlyWhenTypingAfter";
|
||
})(TrackedRangeStickiness || (exports.TrackedRangeStickiness = TrackedRangeStickiness = {}));
|
||
/**
|
||
* Describes how to indent wrapped lines.
|
||
*/
|
||
var WrappingIndent;
|
||
(function (WrappingIndent) {
|
||
/**
|
||
* No indentation => wrapped lines begin at column 1.
|
||
*/
|
||
WrappingIndent[WrappingIndent["None"] = 0] = "None";
|
||
/**
|
||
* Same => wrapped lines get the same indentation as the parent.
|
||
*/
|
||
WrappingIndent[WrappingIndent["Same"] = 1] = "Same";
|
||
/**
|
||
* Indent => wrapped lines get +1 indentation toward the parent.
|
||
*/
|
||
WrappingIndent[WrappingIndent["Indent"] = 2] = "Indent";
|
||
/**
|
||
* DeepIndent => wrapped lines get +2 indentation toward the parent.
|
||
*/
|
||
WrappingIndent[WrappingIndent["DeepIndent"] = 3] = "DeepIndent";
|
||
})(WrappingIndent || (exports.WrappingIndent = WrappingIndent = {}));
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[70/*vs/editor/common/tokenizationRegistry*/], __M([0/*require*/,1/*exports*/,9/*vs/base/common/event*/,8/*vs/base/common/lifecycle*/]), function (require, exports, event_1, lifecycle_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.TokenizationRegistry = void 0;
|
||
class TokenizationRegistry {
|
||
constructor() {
|
||
this._tokenizationSupports = new Map();
|
||
this._factories = new Map();
|
||
this._onDidChange = new event_1.Emitter();
|
||
this.onDidChange = this._onDidChange.event;
|
||
this._colorMap = null;
|
||
}
|
||
handleChange(languageIds) {
|
||
this._onDidChange.fire({
|
||
changedLanguages: languageIds,
|
||
changedColorMap: false
|
||
});
|
||
}
|
||
register(languageId, support) {
|
||
this._tokenizationSupports.set(languageId, support);
|
||
this.handleChange([languageId]);
|
||
return (0, lifecycle_1.toDisposable)(() => {
|
||
if (this._tokenizationSupports.get(languageId) !== support) {
|
||
return;
|
||
}
|
||
this._tokenizationSupports.delete(languageId);
|
||
this.handleChange([languageId]);
|
||
});
|
||
}
|
||
get(languageId) {
|
||
return this._tokenizationSupports.get(languageId) || null;
|
||
}
|
||
registerFactory(languageId, factory) {
|
||
this._factories.get(languageId)?.dispose();
|
||
const myData = new TokenizationSupportFactoryData(this, languageId, factory);
|
||
this._factories.set(languageId, myData);
|
||
return (0, lifecycle_1.toDisposable)(() => {
|
||
const v = this._factories.get(languageId);
|
||
if (!v || v !== myData) {
|
||
return;
|
||
}
|
||
this._factories.delete(languageId);
|
||
v.dispose();
|
||
});
|
||
}
|
||
async getOrCreate(languageId) {
|
||
// check first if the support is already set
|
||
const tokenizationSupport = this.get(languageId);
|
||
if (tokenizationSupport) {
|
||
return tokenizationSupport;
|
||
}
|
||
const factory = this._factories.get(languageId);
|
||
if (!factory || factory.isResolved) {
|
||
// no factory or factory.resolve already finished
|
||
return null;
|
||
}
|
||
await factory.resolve();
|
||
return this.get(languageId);
|
||
}
|
||
isResolved(languageId) {
|
||
const tokenizationSupport = this.get(languageId);
|
||
if (tokenizationSupport) {
|
||
return true;
|
||
}
|
||
const factory = this._factories.get(languageId);
|
||
if (!factory || factory.isResolved) {
|
||
return true;
|
||
}
|
||
return false;
|
||
}
|
||
setColorMap(colorMap) {
|
||
this._colorMap = colorMap;
|
||
this._onDidChange.fire({
|
||
changedLanguages: Array.from(this._tokenizationSupports.keys()),
|
||
changedColorMap: true
|
||
});
|
||
}
|
||
getColorMap() {
|
||
return this._colorMap;
|
||
}
|
||
getDefaultBackground() {
|
||
if (this._colorMap && this._colorMap.length > 2 /* ColorId.DefaultBackground */) {
|
||
return this._colorMap[2 /* ColorId.DefaultBackground */];
|
||
}
|
||
return null;
|
||
}
|
||
}
|
||
exports.TokenizationRegistry = TokenizationRegistry;
|
||
class TokenizationSupportFactoryData extends lifecycle_1.Disposable {
|
||
get isResolved() {
|
||
return this._isResolved;
|
||
}
|
||
constructor(_registry, _languageId, _factory) {
|
||
super();
|
||
this._registry = _registry;
|
||
this._languageId = _languageId;
|
||
this._factory = _factory;
|
||
this._isDisposed = false;
|
||
this._resolvePromise = null;
|
||
this._isResolved = false;
|
||
}
|
||
dispose() {
|
||
this._isDisposed = true;
|
||
super.dispose();
|
||
}
|
||
async resolve() {
|
||
if (!this._resolvePromise) {
|
||
this._resolvePromise = this._create();
|
||
}
|
||
return this._resolvePromise;
|
||
}
|
||
async _create() {
|
||
const value = await this._factory.tokenizationSupport;
|
||
this._isResolved = true;
|
||
if (value && !this._isDisposed) {
|
||
this._register(this._registry.register(this._languageId, value));
|
||
}
|
||
}
|
||
}
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[35/*vs/nls.messages*/], __M([0/*require*/,1/*exports*/]), function (require, exports) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.getNLSMessages = getNLSMessages;
|
||
exports.getNLSLanguage = getNLSLanguage;
|
||
/*
|
||
* This module exists so that the AMD build of the monaco editor can replace this with an async loader plugin.
|
||
* If you add new functions to this module make sure that they are also provided in the AMD build of the monaco editor.
|
||
*/
|
||
function getNLSMessages() {
|
||
return globalThis._VSCODE_NLS_MESSAGES;
|
||
}
|
||
function getNLSLanguage() {
|
||
return globalThis._VSCODE_NLS_LANGUAGE;
|
||
}
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[36/*vs/nls*/], __M([0/*require*/,1/*exports*/,35/*vs/nls.messages*/,35/*vs/nls.messages*/]), function (require, exports, nls_messages_1, nls_messages_2) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.getNLSMessages = exports.getNLSLanguage = void 0;
|
||
exports.localize = localize;
|
||
exports.localize2 = localize2;
|
||
Object.defineProperty(exports, "getNLSLanguage", { enumerable: true, get: function () { return nls_messages_2.getNLSLanguage; } });
|
||
Object.defineProperty(exports, "getNLSMessages", { enumerable: true, get: function () { return nls_messages_2.getNLSMessages; } });
|
||
const isPseudo = (0, nls_messages_1.getNLSLanguage)() === 'pseudo' || (typeof document !== 'undefined' && document.location && document.location.hash.indexOf('pseudo=true') >= 0);
|
||
function _format(message, args) {
|
||
let result;
|
||
if (args.length === 0) {
|
||
result = message;
|
||
}
|
||
else {
|
||
result = message.replace(/\{(\d+)\}/g, (match, rest) => {
|
||
const index = rest[0];
|
||
const arg = args[index];
|
||
let result = match;
|
||
if (typeof arg === 'string') {
|
||
result = arg;
|
||
}
|
||
else if (typeof arg === 'number' || typeof arg === 'boolean' || arg === void 0 || arg === null) {
|
||
result = String(arg);
|
||
}
|
||
return result;
|
||
});
|
||
}
|
||
if (isPseudo) {
|
||
// FF3B and FF3D is the Unicode zenkaku representation for [ and ]
|
||
result = '\uFF3B' + result.replace(/[aouei]/g, '$&$&') + '\uFF3D';
|
||
}
|
||
return result;
|
||
}
|
||
/**
|
||
* @skipMangle
|
||
*/
|
||
function localize(data /* | number when built */, message /* | null when built */, ...args) {
|
||
if (typeof data === 'number') {
|
||
return _format(lookupMessage(data, message), args);
|
||
}
|
||
return _format(message, args);
|
||
}
|
||
/**
|
||
* Only used when built: Looks up the message in the global NLS table.
|
||
* This table is being made available as a global through bootstrapping
|
||
* depending on the target context.
|
||
*/
|
||
function lookupMessage(index, fallback) {
|
||
const message = (0, nls_messages_1.getNLSMessages)()?.[index];
|
||
if (typeof message !== 'string') {
|
||
if (typeof fallback === 'string') {
|
||
return fallback;
|
||
}
|
||
throw new Error(`!!! NLS MISSING: ${index} !!!`);
|
||
}
|
||
return message;
|
||
}
|
||
/**
|
||
* @skipMangle
|
||
*/
|
||
function localize2(data /* | number when built */, originalMessage, ...args) {
|
||
let message;
|
||
if (typeof data === 'number') {
|
||
message = lookupMessage(data, originalMessage);
|
||
}
|
||
else {
|
||
message = originalMessage;
|
||
}
|
||
const value = _format(message, args);
|
||
return {
|
||
value,
|
||
original: originalMessage === message ? value : _format(originalMessage, args)
|
||
};
|
||
}
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[11/*vs/base/common/platform*/], __M([0/*require*/,1/*exports*/,36/*vs/nls*/]), function (require, exports, nls) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.isAndroid = exports.isEdge = exports.isSafari = exports.isFirefox = exports.isChrome = exports.OS = exports.setTimeout0 = exports.setTimeout0IsFaster = exports.language = exports.userAgent = exports.isMobile = exports.isIOS = exports.webWorkerOrigin = exports.isWebWorker = exports.isWeb = exports.isNative = exports.isLinux = exports.isMacintosh = exports.isWindows = exports.LANGUAGE_DEFAULT = void 0;
|
||
exports.isLittleEndian = isLittleEndian;
|
||
exports.LANGUAGE_DEFAULT = 'en';
|
||
let _isWindows = false;
|
||
let _isMacintosh = false;
|
||
let _isLinux = false;
|
||
let _isLinuxSnap = false;
|
||
let _isNative = false;
|
||
let _isWeb = false;
|
||
let _isElectron = false;
|
||
let _isIOS = false;
|
||
let _isCI = false;
|
||
let _isMobile = false;
|
||
let _locale = undefined;
|
||
let _language = exports.LANGUAGE_DEFAULT;
|
||
let _platformLocale = exports.LANGUAGE_DEFAULT;
|
||
let _translationsConfigFile = undefined;
|
||
let _userAgent = undefined;
|
||
const $globalThis = globalThis;
|
||
let nodeProcess = undefined;
|
||
if (typeof $globalThis.vscode !== 'undefined' && typeof $globalThis.vscode.process !== 'undefined') {
|
||
// Native environment (sandboxed)
|
||
nodeProcess = $globalThis.vscode.process;
|
||
}
|
||
else if (typeof process !== 'undefined' && typeof process?.versions?.node === 'string') {
|
||
// Native environment (non-sandboxed)
|
||
nodeProcess = process;
|
||
}
|
||
const isElectronProcess = typeof nodeProcess?.versions?.electron === 'string';
|
||
const isElectronRenderer = isElectronProcess && nodeProcess?.type === 'renderer';
|
||
// Native environment
|
||
if (typeof nodeProcess === 'object') {
|
||
_isWindows = (nodeProcess.platform === 'win32');
|
||
_isMacintosh = (nodeProcess.platform === 'darwin');
|
||
_isLinux = (nodeProcess.platform === 'linux');
|
||
_isLinuxSnap = _isLinux && !!nodeProcess.env['SNAP'] && !!nodeProcess.env['SNAP_REVISION'];
|
||
_isElectron = isElectronProcess;
|
||
_isCI = !!nodeProcess.env['CI'] || !!nodeProcess.env['BUILD_ARTIFACTSTAGINGDIRECTORY'];
|
||
_locale = exports.LANGUAGE_DEFAULT;
|
||
_language = exports.LANGUAGE_DEFAULT;
|
||
const rawNlsConfig = nodeProcess.env['VSCODE_NLS_CONFIG'];
|
||
if (rawNlsConfig) {
|
||
try {
|
||
const nlsConfig = JSON.parse(rawNlsConfig);
|
||
_locale = nlsConfig.userLocale;
|
||
_platformLocale = nlsConfig.osLocale;
|
||
_language = nlsConfig.resolvedLanguage || exports.LANGUAGE_DEFAULT;
|
||
_translationsConfigFile = nlsConfig.languagePack?.translationsConfigFile;
|
||
}
|
||
catch (e) {
|
||
}
|
||
}
|
||
_isNative = true;
|
||
}
|
||
// Web environment
|
||
else if (typeof navigator === 'object' && !isElectronRenderer) {
|
||
_userAgent = navigator.userAgent;
|
||
_isWindows = _userAgent.indexOf('Windows') >= 0;
|
||
_isMacintosh = _userAgent.indexOf('Macintosh') >= 0;
|
||
_isIOS = (_userAgent.indexOf('Macintosh') >= 0 || _userAgent.indexOf('iPad') >= 0 || _userAgent.indexOf('iPhone') >= 0) && !!navigator.maxTouchPoints && navigator.maxTouchPoints > 0;
|
||
_isLinux = _userAgent.indexOf('Linux') >= 0;
|
||
_isMobile = _userAgent?.indexOf('Mobi') >= 0;
|
||
_isWeb = true;
|
||
_language = nls.getNLSLanguage() || exports.LANGUAGE_DEFAULT;
|
||
_locale = navigator.language.toLowerCase();
|
||
_platformLocale = _locale;
|
||
}
|
||
// Unknown environment
|
||
else {
|
||
console.error('Unable to resolve platform.');
|
||
}
|
||
let _platform = 0 /* Platform.Web */;
|
||
if (_isMacintosh) {
|
||
_platform = 1 /* Platform.Mac */;
|
||
}
|
||
else if (_isWindows) {
|
||
_platform = 3 /* Platform.Windows */;
|
||
}
|
||
else if (_isLinux) {
|
||
_platform = 2 /* Platform.Linux */;
|
||
}
|
||
exports.isWindows = _isWindows;
|
||
exports.isMacintosh = _isMacintosh;
|
||
exports.isLinux = _isLinux;
|
||
exports.isNative = _isNative;
|
||
exports.isWeb = _isWeb;
|
||
exports.isWebWorker = (_isWeb && typeof $globalThis.importScripts === 'function');
|
||
exports.webWorkerOrigin = exports.isWebWorker ? $globalThis.origin : undefined;
|
||
exports.isIOS = _isIOS;
|
||
exports.isMobile = _isMobile;
|
||
exports.userAgent = _userAgent;
|
||
/**
|
||
* The language used for the user interface. The format of
|
||
* the string is all lower case (e.g. zh-tw for Traditional
|
||
* Chinese or de for German)
|
||
*/
|
||
exports.language = _language;
|
||
exports.setTimeout0IsFaster = (typeof $globalThis.postMessage === 'function' && !$globalThis.importScripts);
|
||
/**
|
||
* See https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#:~:text=than%204%2C%20then-,set%20timeout%20to%204,-.
|
||
*
|
||
* Works similarly to `setTimeout(0)` but doesn't suffer from the 4ms artificial delay
|
||
* that browsers set when the nesting level is > 5.
|
||
*/
|
||
exports.setTimeout0 = (() => {
|
||
if (exports.setTimeout0IsFaster) {
|
||
const pending = [];
|
||
$globalThis.addEventListener('message', (e) => {
|
||
if (e.data && e.data.vscodeScheduleAsyncWork) {
|
||
for (let i = 0, len = pending.length; i < len; i++) {
|
||
const candidate = pending[i];
|
||
if (candidate.id === e.data.vscodeScheduleAsyncWork) {
|
||
pending.splice(i, 1);
|
||
candidate.callback();
|
||
return;
|
||
}
|
||
}
|
||
}
|
||
});
|
||
let lastId = 0;
|
||
return (callback) => {
|
||
const myId = ++lastId;
|
||
pending.push({
|
||
id: myId,
|
||
callback: callback
|
||
});
|
||
$globalThis.postMessage({ vscodeScheduleAsyncWork: myId }, '*');
|
||
};
|
||
}
|
||
return (callback) => setTimeout(callback);
|
||
})();
|
||
exports.OS = (_isMacintosh || _isIOS ? 2 /* OperatingSystem.Macintosh */ : (_isWindows ? 1 /* OperatingSystem.Windows */ : 3 /* OperatingSystem.Linux */));
|
||
let _isLittleEndian = true;
|
||
let _isLittleEndianComputed = false;
|
||
function isLittleEndian() {
|
||
if (!_isLittleEndianComputed) {
|
||
_isLittleEndianComputed = true;
|
||
const test = new Uint8Array(2);
|
||
test[0] = 1;
|
||
test[1] = 2;
|
||
const view = new Uint16Array(test.buffer);
|
||
_isLittleEndian = (view[0] === (2 << 8) + 1);
|
||
}
|
||
return _isLittleEndian;
|
||
}
|
||
exports.isChrome = !!(exports.userAgent && exports.userAgent.indexOf('Chrome') >= 0);
|
||
exports.isFirefox = !!(exports.userAgent && exports.userAgent.indexOf('Firefox') >= 0);
|
||
exports.isSafari = !!(!exports.isChrome && (exports.userAgent && exports.userAgent.indexOf('Safari') >= 0));
|
||
exports.isEdge = !!(exports.userAgent && exports.userAgent.indexOf('Edg/') >= 0);
|
||
exports.isAndroid = !!(exports.userAgent && exports.userAgent.indexOf('Android') >= 0);
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[71/*vs/base/common/async*/], __M([0/*require*/,1/*exports*/,23/*vs/base/common/cancellation*/,3/*vs/base/common/errors*/,9/*vs/base/common/event*/,8/*vs/base/common/lifecycle*/,11/*vs/base/common/platform*/,45/*vs/base/common/symbols*/]), function (require, exports, cancellation_1, errors_1, event_1, lifecycle_1, platform_1, symbols_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.CancelableAsyncIterableObject = exports.AsyncIterableObject = exports.Promises = exports.DeferredPromise = exports.GlobalIdleValue = exports.AbstractIdleValue = exports._runWhenIdle = exports.runWhenGlobalIdle = exports.RunOnceScheduler = exports.IntervalTimer = exports.TimeoutTimer = exports.ThrottledDelayer = exports.Delayer = exports.Throttler = void 0;
|
||
exports.isThenable = isThenable;
|
||
exports.createCancelablePromise = createCancelablePromise;
|
||
exports.raceCancellation = raceCancellation;
|
||
exports.timeout = timeout;
|
||
exports.disposableTimeout = disposableTimeout;
|
||
exports.first = first;
|
||
exports.createCancelableAsyncIterable = createCancelableAsyncIterable;
|
||
function isThenable(obj) {
|
||
return !!obj && typeof obj.then === 'function';
|
||
}
|
||
function createCancelablePromise(callback) {
|
||
const source = new cancellation_1.CancellationTokenSource();
|
||
const thenable = callback(source.token);
|
||
const promise = new Promise((resolve, reject) => {
|
||
const subscription = source.token.onCancellationRequested(() => {
|
||
subscription.dispose();
|
||
reject(new errors_1.CancellationError());
|
||
});
|
||
Promise.resolve(thenable).then(value => {
|
||
subscription.dispose();
|
||
source.dispose();
|
||
resolve(value);
|
||
}, err => {
|
||
subscription.dispose();
|
||
source.dispose();
|
||
reject(err);
|
||
});
|
||
});
|
||
return new class {
|
||
cancel() {
|
||
source.cancel();
|
||
source.dispose();
|
||
}
|
||
then(resolve, reject) {
|
||
return promise.then(resolve, reject);
|
||
}
|
||
catch(reject) {
|
||
return this.then(undefined, reject);
|
||
}
|
||
finally(onfinally) {
|
||
return promise.finally(onfinally);
|
||
}
|
||
};
|
||
}
|
||
function raceCancellation(promise, token, defaultValue) {
|
||
return new Promise((resolve, reject) => {
|
||
const ref = token.onCancellationRequested(() => {
|
||
ref.dispose();
|
||
resolve(defaultValue);
|
||
});
|
||
promise.then(resolve, reject).finally(() => ref.dispose());
|
||
});
|
||
}
|
||
/**
|
||
* A helper to prevent accumulation of sequential async tasks.
|
||
*
|
||
* Imagine a mail man with the sole task of delivering letters. As soon as
|
||
* a letter submitted for delivery, he drives to the destination, delivers it
|
||
* and returns to his base. Imagine that during the trip, N more letters were submitted.
|
||
* When the mail man returns, he picks those N letters and delivers them all in a
|
||
* single trip. Even though N+1 submissions occurred, only 2 deliveries were made.
|
||
*
|
||
* The throttler implements this via the queue() method, by providing it a task
|
||
* factory. Following the example:
|
||
*
|
||
* const throttler = new Throttler();
|
||
* const letters = [];
|
||
*
|
||
* function deliver() {
|
||
* const lettersToDeliver = letters;
|
||
* letters = [];
|
||
* return makeTheTrip(lettersToDeliver);
|
||
* }
|
||
*
|
||
* function onLetterReceived(l) {
|
||
* letters.push(l);
|
||
* throttler.queue(deliver);
|
||
* }
|
||
*/
|
||
class Throttler {
|
||
constructor() {
|
||
this.isDisposed = false;
|
||
this.activePromise = null;
|
||
this.queuedPromise = null;
|
||
this.queuedPromiseFactory = null;
|
||
}
|
||
queue(promiseFactory) {
|
||
if (this.isDisposed) {
|
||
return Promise.reject(new Error('Throttler is disposed'));
|
||
}
|
||
if (this.activePromise) {
|
||
this.queuedPromiseFactory = promiseFactory;
|
||
if (!this.queuedPromise) {
|
||
const onComplete = () => {
|
||
this.queuedPromise = null;
|
||
if (this.isDisposed) {
|
||
return;
|
||
}
|
||
const result = this.queue(this.queuedPromiseFactory);
|
||
this.queuedPromiseFactory = null;
|
||
return result;
|
||
};
|
||
this.queuedPromise = new Promise(resolve => {
|
||
this.activePromise.then(onComplete, onComplete).then(resolve);
|
||
});
|
||
}
|
||
return new Promise((resolve, reject) => {
|
||
this.queuedPromise.then(resolve, reject);
|
||
});
|
||
}
|
||
this.activePromise = promiseFactory();
|
||
return new Promise((resolve, reject) => {
|
||
this.activePromise.then((result) => {
|
||
this.activePromise = null;
|
||
resolve(result);
|
||
}, (err) => {
|
||
this.activePromise = null;
|
||
reject(err);
|
||
});
|
||
});
|
||
}
|
||
dispose() {
|
||
this.isDisposed = true;
|
||
}
|
||
}
|
||
exports.Throttler = Throttler;
|
||
const timeoutDeferred = (timeout, fn) => {
|
||
let scheduled = true;
|
||
const handle = setTimeout(() => {
|
||
scheduled = false;
|
||
fn();
|
||
}, timeout);
|
||
return {
|
||
isTriggered: () => scheduled,
|
||
dispose: () => {
|
||
clearTimeout(handle);
|
||
scheduled = false;
|
||
},
|
||
};
|
||
};
|
||
const microtaskDeferred = (fn) => {
|
||
let scheduled = true;
|
||
queueMicrotask(() => {
|
||
if (scheduled) {
|
||
scheduled = false;
|
||
fn();
|
||
}
|
||
});
|
||
return {
|
||
isTriggered: () => scheduled,
|
||
dispose: () => { scheduled = false; },
|
||
};
|
||
};
|
||
/**
|
||
* A helper to delay (debounce) execution of a task that is being requested often.
|
||
*
|
||
* Following the throttler, now imagine the mail man wants to optimize the number of
|
||
* trips proactively. The trip itself can be long, so he decides not to make the trip
|
||
* as soon as a letter is submitted. Instead he waits a while, in case more
|
||
* letters are submitted. After said waiting period, if no letters were submitted, he
|
||
* decides to make the trip. Imagine that N more letters were submitted after the first
|
||
* one, all within a short period of time between each other. Even though N+1
|
||
* submissions occurred, only 1 delivery was made.
|
||
*
|
||
* The delayer offers this behavior via the trigger() method, into which both the task
|
||
* to be executed and the waiting period (delay) must be passed in as arguments. Following
|
||
* the example:
|
||
*
|
||
* const delayer = new Delayer(WAITING_PERIOD);
|
||
* const letters = [];
|
||
*
|
||
* function letterReceived(l) {
|
||
* letters.push(l);
|
||
* delayer.trigger(() => { return makeTheTrip(); });
|
||
* }
|
||
*/
|
||
class Delayer {
|
||
constructor(defaultDelay) {
|
||
this.defaultDelay = defaultDelay;
|
||
this.deferred = null;
|
||
this.completionPromise = null;
|
||
this.doResolve = null;
|
||
this.doReject = null;
|
||
this.task = null;
|
||
}
|
||
trigger(task, delay = this.defaultDelay) {
|
||
this.task = task;
|
||
this.cancelTimeout();
|
||
if (!this.completionPromise) {
|
||
this.completionPromise = new Promise((resolve, reject) => {
|
||
this.doResolve = resolve;
|
||
this.doReject = reject;
|
||
}).then(() => {
|
||
this.completionPromise = null;
|
||
this.doResolve = null;
|
||
if (this.task) {
|
||
const task = this.task;
|
||
this.task = null;
|
||
return task();
|
||
}
|
||
return undefined;
|
||
});
|
||
}
|
||
const fn = () => {
|
||
this.deferred = null;
|
||
this.doResolve?.(null);
|
||
};
|
||
this.deferred = delay === symbols_1.MicrotaskDelay ? microtaskDeferred(fn) : timeoutDeferred(delay, fn);
|
||
return this.completionPromise;
|
||
}
|
||
isTriggered() {
|
||
return !!this.deferred?.isTriggered();
|
||
}
|
||
cancel() {
|
||
this.cancelTimeout();
|
||
if (this.completionPromise) {
|
||
this.doReject?.(new errors_1.CancellationError());
|
||
this.completionPromise = null;
|
||
}
|
||
}
|
||
cancelTimeout() {
|
||
this.deferred?.dispose();
|
||
this.deferred = null;
|
||
}
|
||
dispose() {
|
||
this.cancel();
|
||
}
|
||
}
|
||
exports.Delayer = Delayer;
|
||
/**
|
||
* A helper to delay execution of a task that is being requested often, while
|
||
* preventing accumulation of consecutive executions, while the task runs.
|
||
*
|
||
* The mail man is clever and waits for a certain amount of time, before going
|
||
* out to deliver letters. While the mail man is going out, more letters arrive
|
||
* and can only be delivered once he is back. Once he is back the mail man will
|
||
* do one more trip to deliver the letters that have accumulated while he was out.
|
||
*/
|
||
class ThrottledDelayer {
|
||
constructor(defaultDelay) {
|
||
this.delayer = new Delayer(defaultDelay);
|
||
this.throttler = new Throttler();
|
||
}
|
||
trigger(promiseFactory, delay) {
|
||
return this.delayer.trigger(() => this.throttler.queue(promiseFactory), delay);
|
||
}
|
||
cancel() {
|
||
this.delayer.cancel();
|
||
}
|
||
dispose() {
|
||
this.delayer.dispose();
|
||
this.throttler.dispose();
|
||
}
|
||
}
|
||
exports.ThrottledDelayer = ThrottledDelayer;
|
||
function timeout(millis, token) {
|
||
if (!token) {
|
||
return createCancelablePromise(token => timeout(millis, token));
|
||
}
|
||
return new Promise((resolve, reject) => {
|
||
const handle = setTimeout(() => {
|
||
disposable.dispose();
|
||
resolve();
|
||
}, millis);
|
||
const disposable = token.onCancellationRequested(() => {
|
||
clearTimeout(handle);
|
||
disposable.dispose();
|
||
reject(new errors_1.CancellationError());
|
||
});
|
||
});
|
||
}
|
||
/**
|
||
* Creates a timeout that can be disposed using its returned value.
|
||
* @param handler The timeout handler.
|
||
* @param timeout An optional timeout in milliseconds.
|
||
* @param store An optional {@link DisposableStore} that will have the timeout disposable managed automatically.
|
||
*
|
||
* @example
|
||
* const store = new DisposableStore;
|
||
* // Call the timeout after 1000ms at which point it will be automatically
|
||
* // evicted from the store.
|
||
* const timeoutDisposable = disposableTimeout(() => {}, 1000, store);
|
||
*
|
||
* if (foo) {
|
||
* // Cancel the timeout and evict it from store.
|
||
* timeoutDisposable.dispose();
|
||
* }
|
||
*/
|
||
function disposableTimeout(handler, timeout = 0, store) {
|
||
const timer = setTimeout(() => {
|
||
handler();
|
||
if (store) {
|
||
disposable.dispose();
|
||
}
|
||
}, timeout);
|
||
const disposable = (0, lifecycle_1.toDisposable)(() => {
|
||
clearTimeout(timer);
|
||
store?.deleteAndLeak(disposable);
|
||
});
|
||
store?.add(disposable);
|
||
return disposable;
|
||
}
|
||
function first(promiseFactories, shouldStop = t => !!t, defaultValue = null) {
|
||
let index = 0;
|
||
const len = promiseFactories.length;
|
||
const loop = () => {
|
||
if (index >= len) {
|
||
return Promise.resolve(defaultValue);
|
||
}
|
||
const factory = promiseFactories[index++];
|
||
const promise = Promise.resolve(factory());
|
||
return promise.then(result => {
|
||
if (shouldStop(result)) {
|
||
return Promise.resolve(result);
|
||
}
|
||
return loop();
|
||
});
|
||
};
|
||
return loop();
|
||
}
|
||
class TimeoutTimer {
|
||
constructor(runner, timeout) {
|
||
this._isDisposed = false;
|
||
this._token = -1;
|
||
if (typeof runner === 'function' && typeof timeout === 'number') {
|
||
this.setIfNotSet(runner, timeout);
|
||
}
|
||
}
|
||
dispose() {
|
||
this.cancel();
|
||
this._isDisposed = true;
|
||
}
|
||
cancel() {
|
||
if (this._token !== -1) {
|
||
clearTimeout(this._token);
|
||
this._token = -1;
|
||
}
|
||
}
|
||
cancelAndSet(runner, timeout) {
|
||
if (this._isDisposed) {
|
||
throw new errors_1.BugIndicatingError(`Calling 'cancelAndSet' on a disposed TimeoutTimer`);
|
||
}
|
||
this.cancel();
|
||
this._token = setTimeout(() => {
|
||
this._token = -1;
|
||
runner();
|
||
}, timeout);
|
||
}
|
||
setIfNotSet(runner, timeout) {
|
||
if (this._isDisposed) {
|
||
throw new errors_1.BugIndicatingError(`Calling 'setIfNotSet' on a disposed TimeoutTimer`);
|
||
}
|
||
if (this._token !== -1) {
|
||
// timer is already set
|
||
return;
|
||
}
|
||
this._token = setTimeout(() => {
|
||
this._token = -1;
|
||
runner();
|
||
}, timeout);
|
||
}
|
||
}
|
||
exports.TimeoutTimer = TimeoutTimer;
|
||
class IntervalTimer {
|
||
constructor() {
|
||
this.disposable = undefined;
|
||
this.isDisposed = false;
|
||
}
|
||
cancel() {
|
||
this.disposable?.dispose();
|
||
this.disposable = undefined;
|
||
}
|
||
cancelAndSet(runner, interval, context = globalThis) {
|
||
if (this.isDisposed) {
|
||
throw new errors_1.BugIndicatingError(`Calling 'cancelAndSet' on a disposed IntervalTimer`);
|
||
}
|
||
this.cancel();
|
||
const handle = context.setInterval(() => {
|
||
runner();
|
||
}, interval);
|
||
this.disposable = (0, lifecycle_1.toDisposable)(() => {
|
||
context.clearInterval(handle);
|
||
this.disposable = undefined;
|
||
});
|
||
}
|
||
dispose() {
|
||
this.cancel();
|
||
this.isDisposed = true;
|
||
}
|
||
}
|
||
exports.IntervalTimer = IntervalTimer;
|
||
class RunOnceScheduler {
|
||
constructor(runner, delay) {
|
||
this.timeoutToken = -1;
|
||
this.runner = runner;
|
||
this.timeout = delay;
|
||
this.timeoutHandler = this.onTimeout.bind(this);
|
||
}
|
||
/**
|
||
* Dispose RunOnceScheduler
|
||
*/
|
||
dispose() {
|
||
this.cancel();
|
||
this.runner = null;
|
||
}
|
||
/**
|
||
* Cancel current scheduled runner (if any).
|
||
*/
|
||
cancel() {
|
||
if (this.isScheduled()) {
|
||
clearTimeout(this.timeoutToken);
|
||
this.timeoutToken = -1;
|
||
}
|
||
}
|
||
/**
|
||
* Cancel previous runner (if any) & schedule a new runner.
|
||
*/
|
||
schedule(delay = this.timeout) {
|
||
this.cancel();
|
||
this.timeoutToken = setTimeout(this.timeoutHandler, delay);
|
||
}
|
||
get delay() {
|
||
return this.timeout;
|
||
}
|
||
set delay(value) {
|
||
this.timeout = value;
|
||
}
|
||
/**
|
||
* Returns true if scheduled.
|
||
*/
|
||
isScheduled() {
|
||
return this.timeoutToken !== -1;
|
||
}
|
||
onTimeout() {
|
||
this.timeoutToken = -1;
|
||
if (this.runner) {
|
||
this.doRun();
|
||
}
|
||
}
|
||
doRun() {
|
||
this.runner?.();
|
||
}
|
||
}
|
||
exports.RunOnceScheduler = RunOnceScheduler;
|
||
(function () {
|
||
if (typeof globalThis.requestIdleCallback !== 'function' || typeof globalThis.cancelIdleCallback !== 'function') {
|
||
exports._runWhenIdle = (_targetWindow, runner) => {
|
||
(0, platform_1.setTimeout0)(() => {
|
||
if (disposed) {
|
||
return;
|
||
}
|
||
const end = Date.now() + 15; // one frame at 64fps
|
||
const deadline = {
|
||
didTimeout: true,
|
||
timeRemaining() {
|
||
return Math.max(0, end - Date.now());
|
||
}
|
||
};
|
||
runner(Object.freeze(deadline));
|
||
});
|
||
let disposed = false;
|
||
return {
|
||
dispose() {
|
||
if (disposed) {
|
||
return;
|
||
}
|
||
disposed = true;
|
||
}
|
||
};
|
||
};
|
||
}
|
||
else {
|
||
exports._runWhenIdle = (targetWindow, runner, timeout) => {
|
||
const handle = targetWindow.requestIdleCallback(runner, typeof timeout === 'number' ? { timeout } : undefined);
|
||
let disposed = false;
|
||
return {
|
||
dispose() {
|
||
if (disposed) {
|
||
return;
|
||
}
|
||
disposed = true;
|
||
targetWindow.cancelIdleCallback(handle);
|
||
}
|
||
};
|
||
};
|
||
}
|
||
exports.runWhenGlobalIdle = (runner) => (0, exports._runWhenIdle)(globalThis, runner);
|
||
})();
|
||
class AbstractIdleValue {
|
||
constructor(targetWindow, executor) {
|
||
this._didRun = false;
|
||
this._executor = () => {
|
||
try {
|
||
this._value = executor();
|
||
}
|
||
catch (err) {
|
||
this._error = err;
|
||
}
|
||
finally {
|
||
this._didRun = true;
|
||
}
|
||
};
|
||
this._handle = (0, exports._runWhenIdle)(targetWindow, () => this._executor());
|
||
}
|
||
dispose() {
|
||
this._handle.dispose();
|
||
}
|
||
get value() {
|
||
if (!this._didRun) {
|
||
this._handle.dispose();
|
||
this._executor();
|
||
}
|
||
if (this._error) {
|
||
throw this._error;
|
||
}
|
||
return this._value;
|
||
}
|
||
get isInitialized() {
|
||
return this._didRun;
|
||
}
|
||
}
|
||
exports.AbstractIdleValue = AbstractIdleValue;
|
||
/**
|
||
* An `IdleValue` that always uses the current window (which might be throttled or inactive)
|
||
*
|
||
* **Note** that there is `dom.ts#WindowIdleValue` which is better suited when running inside a browser
|
||
* context
|
||
*/
|
||
class GlobalIdleValue extends AbstractIdleValue {
|
||
constructor(executor) {
|
||
super(globalThis, executor);
|
||
}
|
||
}
|
||
exports.GlobalIdleValue = GlobalIdleValue;
|
||
/**
|
||
* Creates a promise whose resolution or rejection can be controlled imperatively.
|
||
*/
|
||
class DeferredPromise {
|
||
get isRejected() {
|
||
return this.outcome?.outcome === 1 /* DeferredOutcome.Rejected */;
|
||
}
|
||
get isSettled() {
|
||
return !!this.outcome;
|
||
}
|
||
constructor() {
|
||
this.p = new Promise((c, e) => {
|
||
this.completeCallback = c;
|
||
this.errorCallback = e;
|
||
});
|
||
}
|
||
complete(value) {
|
||
return new Promise(resolve => {
|
||
this.completeCallback(value);
|
||
this.outcome = { outcome: 0 /* DeferredOutcome.Resolved */, value };
|
||
resolve();
|
||
});
|
||
}
|
||
error(err) {
|
||
return new Promise(resolve => {
|
||
this.errorCallback(err);
|
||
this.outcome = { outcome: 1 /* DeferredOutcome.Rejected */, value: err };
|
||
resolve();
|
||
});
|
||
}
|
||
cancel() {
|
||
return this.error(new errors_1.CancellationError());
|
||
}
|
||
}
|
||
exports.DeferredPromise = DeferredPromise;
|
||
//#endregion
|
||
//#region Promises
|
||
var Promises;
|
||
(function (Promises) {
|
||
/**
|
||
* A drop-in replacement for `Promise.all` with the only difference
|
||
* that the method awaits every promise to either fulfill or reject.
|
||
*
|
||
* Similar to `Promise.all`, only the first error will be returned
|
||
* if any.
|
||
*/
|
||
async function settled(promises) {
|
||
let firstError = undefined;
|
||
const result = await Promise.all(promises.map(promise => promise.then(value => value, error => {
|
||
if (!firstError) {
|
||
firstError = error;
|
||
}
|
||
return undefined; // do not rethrow so that other promises can settle
|
||
})));
|
||
if (typeof firstError !== 'undefined') {
|
||
throw firstError;
|
||
}
|
||
return result; // cast is needed and protected by the `throw` above
|
||
}
|
||
Promises.settled = settled;
|
||
/**
|
||
* A helper to create a new `Promise<T>` with a body that is a promise
|
||
* itself. By default, an error that raises from the async body will
|
||
* end up as a unhandled rejection, so this utility properly awaits the
|
||
* body and rejects the promise as a normal promise does without async
|
||
* body.
|
||
*
|
||
* This method should only be used in rare cases where otherwise `async`
|
||
* cannot be used (e.g. when callbacks are involved that require this).
|
||
*/
|
||
function withAsyncBody(bodyFn) {
|
||
// eslint-disable-next-line no-async-promise-executor
|
||
return new Promise(async (resolve, reject) => {
|
||
try {
|
||
await bodyFn(resolve, reject);
|
||
}
|
||
catch (error) {
|
||
reject(error);
|
||
}
|
||
});
|
||
}
|
||
Promises.withAsyncBody = withAsyncBody;
|
||
})(Promises || (exports.Promises = Promises = {}));
|
||
/**
|
||
* A rich implementation for an `AsyncIterable<T>`.
|
||
*/
|
||
class AsyncIterableObject {
|
||
static fromArray(items) {
|
||
return new AsyncIterableObject((writer) => {
|
||
writer.emitMany(items);
|
||
});
|
||
}
|
||
static fromPromise(promise) {
|
||
return new AsyncIterableObject(async (emitter) => {
|
||
emitter.emitMany(await promise);
|
||
});
|
||
}
|
||
static fromPromises(promises) {
|
||
return new AsyncIterableObject(async (emitter) => {
|
||
await Promise.all(promises.map(async (p) => emitter.emitOne(await p)));
|
||
});
|
||
}
|
||
static merge(iterables) {
|
||
return new AsyncIterableObject(async (emitter) => {
|
||
await Promise.all(iterables.map(async (iterable) => {
|
||
for await (const item of iterable) {
|
||
emitter.emitOne(item);
|
||
}
|
||
}));
|
||
});
|
||
}
|
||
static { this.EMPTY = AsyncIterableObject.fromArray([]); }
|
||
constructor(executor, onReturn) {
|
||
this._state = 0 /* AsyncIterableSourceState.Initial */;
|
||
this._results = [];
|
||
this._error = null;
|
||
this._onReturn = onReturn;
|
||
this._onStateChanged = new event_1.Emitter();
|
||
queueMicrotask(async () => {
|
||
const writer = {
|
||
emitOne: (item) => this.emitOne(item),
|
||
emitMany: (items) => this.emitMany(items),
|
||
reject: (error) => this.reject(error)
|
||
};
|
||
try {
|
||
await Promise.resolve(executor(writer));
|
||
this.resolve();
|
||
}
|
||
catch (err) {
|
||
this.reject(err);
|
||
}
|
||
finally {
|
||
writer.emitOne = undefined;
|
||
writer.emitMany = undefined;
|
||
writer.reject = undefined;
|
||
}
|
||
});
|
||
}
|
||
[Symbol.asyncIterator]() {
|
||
let i = 0;
|
||
return {
|
||
next: async () => {
|
||
do {
|
||
if (this._state === 2 /* AsyncIterableSourceState.DoneError */) {
|
||
throw this._error;
|
||
}
|
||
if (i < this._results.length) {
|
||
return { done: false, value: this._results[i++] };
|
||
}
|
||
if (this._state === 1 /* AsyncIterableSourceState.DoneOK */) {
|
||
return { done: true, value: undefined };
|
||
}
|
||
await event_1.Event.toPromise(this._onStateChanged.event);
|
||
} while (true);
|
||
},
|
||
return: async () => {
|
||
this._onReturn?.();
|
||
return { done: true, value: undefined };
|
||
}
|
||
};
|
||
}
|
||
static map(iterable, mapFn) {
|
||
return new AsyncIterableObject(async (emitter) => {
|
||
for await (const item of iterable) {
|
||
emitter.emitOne(mapFn(item));
|
||
}
|
||
});
|
||
}
|
||
map(mapFn) {
|
||
return AsyncIterableObject.map(this, mapFn);
|
||
}
|
||
static filter(iterable, filterFn) {
|
||
return new AsyncIterableObject(async (emitter) => {
|
||
for await (const item of iterable) {
|
||
if (filterFn(item)) {
|
||
emitter.emitOne(item);
|
||
}
|
||
}
|
||
});
|
||
}
|
||
filter(filterFn) {
|
||
return AsyncIterableObject.filter(this, filterFn);
|
||
}
|
||
static coalesce(iterable) {
|
||
return AsyncIterableObject.filter(iterable, item => !!item);
|
||
}
|
||
coalesce() {
|
||
return AsyncIterableObject.coalesce(this);
|
||
}
|
||
static async toPromise(iterable) {
|
||
const result = [];
|
||
for await (const item of iterable) {
|
||
result.push(item);
|
||
}
|
||
return result;
|
||
}
|
||
toPromise() {
|
||
return AsyncIterableObject.toPromise(this);
|
||
}
|
||
/**
|
||
* The value will be appended at the end.
|
||
*
|
||
* **NOTE** If `resolve()` or `reject()` have already been called, this method has no effect.
|
||
*/
|
||
emitOne(value) {
|
||
if (this._state !== 0 /* AsyncIterableSourceState.Initial */) {
|
||
return;
|
||
}
|
||
// it is important to add new values at the end,
|
||
// as we may have iterators already running on the array
|
||
this._results.push(value);
|
||
this._onStateChanged.fire();
|
||
}
|
||
/**
|
||
* The values will be appended at the end.
|
||
*
|
||
* **NOTE** If `resolve()` or `reject()` have already been called, this method has no effect.
|
||
*/
|
||
emitMany(values) {
|
||
if (this._state !== 0 /* AsyncIterableSourceState.Initial */) {
|
||
return;
|
||
}
|
||
// it is important to add new values at the end,
|
||
// as we may have iterators already running on the array
|
||
this._results = this._results.concat(values);
|
||
this._onStateChanged.fire();
|
||
}
|
||
/**
|
||
* Calling `resolve()` will mark the result array as complete.
|
||
*
|
||
* **NOTE** `resolve()` must be called, otherwise all consumers of this iterable will hang indefinitely, similar to a non-resolved promise.
|
||
* **NOTE** If `resolve()` or `reject()` have already been called, this method has no effect.
|
||
*/
|
||
resolve() {
|
||
if (this._state !== 0 /* AsyncIterableSourceState.Initial */) {
|
||
return;
|
||
}
|
||
this._state = 1 /* AsyncIterableSourceState.DoneOK */;
|
||
this._onStateChanged.fire();
|
||
}
|
||
/**
|
||
* Writing an error will permanently invalidate this iterable.
|
||
* The current users will receive an error thrown, as will all future users.
|
||
*
|
||
* **NOTE** If `resolve()` or `reject()` have already been called, this method has no effect.
|
||
*/
|
||
reject(error) {
|
||
if (this._state !== 0 /* AsyncIterableSourceState.Initial */) {
|
||
return;
|
||
}
|
||
this._state = 2 /* AsyncIterableSourceState.DoneError */;
|
||
this._error = error;
|
||
this._onStateChanged.fire();
|
||
}
|
||
}
|
||
exports.AsyncIterableObject = AsyncIterableObject;
|
||
class CancelableAsyncIterableObject extends AsyncIterableObject {
|
||
constructor(_source, executor) {
|
||
super(executor);
|
||
this._source = _source;
|
||
}
|
||
cancel() {
|
||
this._source.cancel();
|
||
}
|
||
}
|
||
exports.CancelableAsyncIterableObject = CancelableAsyncIterableObject;
|
||
function createCancelableAsyncIterable(callback) {
|
||
const source = new cancellation_1.CancellationTokenSource();
|
||
const innerIterable = callback(source.token);
|
||
return new CancelableAsyncIterableObject(source, async (emitter) => {
|
||
const subscription = source.token.onCancellationRequested(() => {
|
||
subscription.dispose();
|
||
source.dispose();
|
||
emitter.reject(new errors_1.CancellationError());
|
||
});
|
||
try {
|
||
for await (const item of innerIterable) {
|
||
if (source.token.isCancellationRequested) {
|
||
// canceled in the meantime
|
||
return;
|
||
}
|
||
emitter.emitOne(item);
|
||
}
|
||
subscription.dispose();
|
||
source.dispose();
|
||
}
|
||
catch (err) {
|
||
subscription.dispose();
|
||
source.dispose();
|
||
emitter.reject(err);
|
||
}
|
||
});
|
||
}
|
||
});
|
||
//#endregion
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[72/*vs/base/common/process*/], __M([0/*require*/,1/*exports*/,11/*vs/base/common/platform*/]), function (require, exports, platform_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.platform = exports.env = exports.cwd = void 0;
|
||
let safeProcess;
|
||
// Native sandbox environment
|
||
const vscodeGlobal = globalThis.vscode;
|
||
if (typeof vscodeGlobal !== 'undefined' && typeof vscodeGlobal.process !== 'undefined') {
|
||
const sandboxProcess = vscodeGlobal.process;
|
||
safeProcess = {
|
||
get platform() { return sandboxProcess.platform; },
|
||
get arch() { return sandboxProcess.arch; },
|
||
get env() { return sandboxProcess.env; },
|
||
cwd() { return sandboxProcess.cwd(); }
|
||
};
|
||
}
|
||
// Native node.js environment
|
||
else if (typeof process !== 'undefined' && typeof process?.versions?.node === 'string') {
|
||
safeProcess = {
|
||
get platform() { return process.platform; },
|
||
get arch() { return process.arch; },
|
||
get env() { return process.env; },
|
||
cwd() { return process.env['VSCODE_CWD'] || process.cwd(); }
|
||
};
|
||
}
|
||
// Web environment
|
||
else {
|
||
safeProcess = {
|
||
// Supported
|
||
get platform() { return platform_1.isWindows ? 'win32' : platform_1.isMacintosh ? 'darwin' : 'linux'; },
|
||
get arch() { return undefined; /* arch is undefined in web */ },
|
||
// Unsupported
|
||
get env() { return {}; },
|
||
cwd() { return '/'; }
|
||
};
|
||
}
|
||
/**
|
||
* Provides safe access to the `cwd` property in node.js, sandboxed or web
|
||
* environments.
|
||
*
|
||
* Note: in web, this property is hardcoded to be `/`.
|
||
*
|
||
* @skipMangle
|
||
*/
|
||
exports.cwd = safeProcess.cwd;
|
||
/**
|
||
* Provides safe access to the `env` property in node.js, sandboxed or web
|
||
* environments.
|
||
*
|
||
* Note: in web, this property is hardcoded to be `{}`.
|
||
*/
|
||
exports.env = safeProcess.env;
|
||
/**
|
||
* Provides safe access to the `platform` property in node.js, sandboxed or web
|
||
* environments.
|
||
*/
|
||
exports.platform = safeProcess.platform;
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[37/*vs/base/common/path*/], __M([0/*require*/,1/*exports*/,72/*vs/base/common/process*/]), function (require, exports, process) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.sep = exports.extname = exports.basename = exports.dirname = exports.relative = exports.resolve = exports.join = exports.normalize = exports.posix = exports.win32 = void 0;
|
||
const CHAR_UPPERCASE_A = 65; /* A */
|
||
const CHAR_LOWERCASE_A = 97; /* a */
|
||
const CHAR_UPPERCASE_Z = 90; /* Z */
|
||
const CHAR_LOWERCASE_Z = 122; /* z */
|
||
const CHAR_DOT = 46; /* . */
|
||
const CHAR_FORWARD_SLASH = 47; /* / */
|
||
const CHAR_BACKWARD_SLASH = 92; /* \ */
|
||
const CHAR_COLON = 58; /* : */
|
||
const CHAR_QUESTION_MARK = 63; /* ? */
|
||
class ErrorInvalidArgType extends Error {
|
||
constructor(name, expected, actual) {
|
||
// determiner: 'must be' or 'must not be'
|
||
let determiner;
|
||
if (typeof expected === 'string' && expected.indexOf('not ') === 0) {
|
||
determiner = 'must not be';
|
||
expected = expected.replace(/^not /, '');
|
||
}
|
||
else {
|
||
determiner = 'must be';
|
||
}
|
||
const type = name.indexOf('.') !== -1 ? 'property' : 'argument';
|
||
let msg = `The "${name}" ${type} ${determiner} of type ${expected}`;
|
||
msg += `. Received type ${typeof actual}`;
|
||
super(msg);
|
||
this.code = 'ERR_INVALID_ARG_TYPE';
|
||
}
|
||
}
|
||
function validateObject(pathObject, name) {
|
||
if (pathObject === null || typeof pathObject !== 'object') {
|
||
throw new ErrorInvalidArgType(name, 'Object', pathObject);
|
||
}
|
||
}
|
||
function validateString(value, name) {
|
||
if (typeof value !== 'string') {
|
||
throw new ErrorInvalidArgType(name, 'string', value);
|
||
}
|
||
}
|
||
const platformIsWin32 = (process.platform === 'win32');
|
||
function isPathSeparator(code) {
|
||
return code === CHAR_FORWARD_SLASH || code === CHAR_BACKWARD_SLASH;
|
||
}
|
||
function isPosixPathSeparator(code) {
|
||
return code === CHAR_FORWARD_SLASH;
|
||
}
|
||
function isWindowsDeviceRoot(code) {
|
||
return (code >= CHAR_UPPERCASE_A && code <= CHAR_UPPERCASE_Z) ||
|
||
(code >= CHAR_LOWERCASE_A && code <= CHAR_LOWERCASE_Z);
|
||
}
|
||
// Resolves . and .. elements in a path with directory names
|
||
function normalizeString(path, allowAboveRoot, separator, isPathSeparator) {
|
||
let res = '';
|
||
let lastSegmentLength = 0;
|
||
let lastSlash = -1;
|
||
let dots = 0;
|
||
let code = 0;
|
||
for (let i = 0; i <= path.length; ++i) {
|
||
if (i < path.length) {
|
||
code = path.charCodeAt(i);
|
||
}
|
||
else if (isPathSeparator(code)) {
|
||
break;
|
||
}
|
||
else {
|
||
code = CHAR_FORWARD_SLASH;
|
||
}
|
||
if (isPathSeparator(code)) {
|
||
if (lastSlash === i - 1 || dots === 1) {
|
||
// NOOP
|
||
}
|
||
else if (dots === 2) {
|
||
if (res.length < 2 || lastSegmentLength !== 2 ||
|
||
res.charCodeAt(res.length - 1) !== CHAR_DOT ||
|
||
res.charCodeAt(res.length - 2) !== CHAR_DOT) {
|
||
if (res.length > 2) {
|
||
const lastSlashIndex = res.lastIndexOf(separator);
|
||
if (lastSlashIndex === -1) {
|
||
res = '';
|
||
lastSegmentLength = 0;
|
||
}
|
||
else {
|
||
res = res.slice(0, lastSlashIndex);
|
||
lastSegmentLength = res.length - 1 - res.lastIndexOf(separator);
|
||
}
|
||
lastSlash = i;
|
||
dots = 0;
|
||
continue;
|
||
}
|
||
else if (res.length !== 0) {
|
||
res = '';
|
||
lastSegmentLength = 0;
|
||
lastSlash = i;
|
||
dots = 0;
|
||
continue;
|
||
}
|
||
}
|
||
if (allowAboveRoot) {
|
||
res += res.length > 0 ? `${separator}..` : '..';
|
||
lastSegmentLength = 2;
|
||
}
|
||
}
|
||
else {
|
||
if (res.length > 0) {
|
||
res += `${separator}${path.slice(lastSlash + 1, i)}`;
|
||
}
|
||
else {
|
||
res = path.slice(lastSlash + 1, i);
|
||
}
|
||
lastSegmentLength = i - lastSlash - 1;
|
||
}
|
||
lastSlash = i;
|
||
dots = 0;
|
||
}
|
||
else if (code === CHAR_DOT && dots !== -1) {
|
||
++dots;
|
||
}
|
||
else {
|
||
dots = -1;
|
||
}
|
||
}
|
||
return res;
|
||
}
|
||
function formatExt(ext) {
|
||
return ext ? `${ext[0] === '.' ? '' : '.'}${ext}` : '';
|
||
}
|
||
function _format(sep, pathObject) {
|
||
validateObject(pathObject, 'pathObject');
|
||
const dir = pathObject.dir || pathObject.root;
|
||
const base = pathObject.base ||
|
||
`${pathObject.name || ''}${formatExt(pathObject.ext)}`;
|
||
if (!dir) {
|
||
return base;
|
||
}
|
||
return dir === pathObject.root ? `${dir}${base}` : `${dir}${sep}${base}`;
|
||
}
|
||
exports.win32 = {
|
||
// path.resolve([from ...], to)
|
||
resolve(...pathSegments) {
|
||
let resolvedDevice = '';
|
||
let resolvedTail = '';
|
||
let resolvedAbsolute = false;
|
||
for (let i = pathSegments.length - 1; i >= -1; i--) {
|
||
let path;
|
||
if (i >= 0) {
|
||
path = pathSegments[i];
|
||
validateString(path, `paths[${i}]`);
|
||
// Skip empty entries
|
||
if (path.length === 0) {
|
||
continue;
|
||
}
|
||
}
|
||
else if (resolvedDevice.length === 0) {
|
||
path = process.cwd();
|
||
}
|
||
else {
|
||
// Windows has the concept of drive-specific current working
|
||
// directories. If we've resolved a drive letter but not yet an
|
||
// absolute path, get cwd for that drive, or the process cwd if
|
||
// the drive cwd is not available. We're sure the device is not
|
||
// a UNC path at this points, because UNC paths are always absolute.
|
||
path = process.env[`=${resolvedDevice}`] || process.cwd();
|
||
// Verify that a cwd was found and that it actually points
|
||
// to our drive. If not, default to the drive's root.
|
||
if (path === undefined ||
|
||
(path.slice(0, 2).toLowerCase() !== resolvedDevice.toLowerCase() &&
|
||
path.charCodeAt(2) === CHAR_BACKWARD_SLASH)) {
|
||
path = `${resolvedDevice}\\`;
|
||
}
|
||
}
|
||
const len = path.length;
|
||
let rootEnd = 0;
|
||
let device = '';
|
||
let isAbsolute = false;
|
||
const code = path.charCodeAt(0);
|
||
// Try to match a root
|
||
if (len === 1) {
|
||
if (isPathSeparator(code)) {
|
||
// `path` contains just a path separator
|
||
rootEnd = 1;
|
||
isAbsolute = true;
|
||
}
|
||
}
|
||
else if (isPathSeparator(code)) {
|
||
// Possible UNC root
|
||
// If we started with a separator, we know we at least have an
|
||
// absolute path of some kind (UNC or otherwise)
|
||
isAbsolute = true;
|
||
if (isPathSeparator(path.charCodeAt(1))) {
|
||
// Matched double path separator at beginning
|
||
let j = 2;
|
||
let last = j;
|
||
// Match 1 or more non-path separators
|
||
while (j < len && !isPathSeparator(path.charCodeAt(j))) {
|
||
j++;
|
||
}
|
||
if (j < len && j !== last) {
|
||
const firstPart = path.slice(last, j);
|
||
// Matched!
|
||
last = j;
|
||
// Match 1 or more path separators
|
||
while (j < len && isPathSeparator(path.charCodeAt(j))) {
|
||
j++;
|
||
}
|
||
if (j < len && j !== last) {
|
||
// Matched!
|
||
last = j;
|
||
// Match 1 or more non-path separators
|
||
while (j < len && !isPathSeparator(path.charCodeAt(j))) {
|
||
j++;
|
||
}
|
||
if (j === len || j !== last) {
|
||
// We matched a UNC root
|
||
device = `\\\\${firstPart}\\${path.slice(last, j)}`;
|
||
rootEnd = j;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
else {
|
||
rootEnd = 1;
|
||
}
|
||
}
|
||
else if (isWindowsDeviceRoot(code) &&
|
||
path.charCodeAt(1) === CHAR_COLON) {
|
||
// Possible device root
|
||
device = path.slice(0, 2);
|
||
rootEnd = 2;
|
||
if (len > 2 && isPathSeparator(path.charCodeAt(2))) {
|
||
// Treat separator following drive name as an absolute path
|
||
// indicator
|
||
isAbsolute = true;
|
||
rootEnd = 3;
|
||
}
|
||
}
|
||
if (device.length > 0) {
|
||
if (resolvedDevice.length > 0) {
|
||
if (device.toLowerCase() !== resolvedDevice.toLowerCase()) {
|
||
// This path points to another device so it is not applicable
|
||
continue;
|
||
}
|
||
}
|
||
else {
|
||
resolvedDevice = device;
|
||
}
|
||
}
|
||
if (resolvedAbsolute) {
|
||
if (resolvedDevice.length > 0) {
|
||
break;
|
||
}
|
||
}
|
||
else {
|
||
resolvedTail = `${path.slice(rootEnd)}\\${resolvedTail}`;
|
||
resolvedAbsolute = isAbsolute;
|
||
if (isAbsolute && resolvedDevice.length > 0) {
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
// At this point the path should be resolved to a full absolute path,
|
||
// but handle relative paths to be safe (might happen when process.cwd()
|
||
// fails)
|
||
// Normalize the tail path
|
||
resolvedTail = normalizeString(resolvedTail, !resolvedAbsolute, '\\', isPathSeparator);
|
||
return resolvedAbsolute ?
|
||
`${resolvedDevice}\\${resolvedTail}` :
|
||
`${resolvedDevice}${resolvedTail}` || '.';
|
||
},
|
||
normalize(path) {
|
||
validateString(path, 'path');
|
||
const len = path.length;
|
||
if (len === 0) {
|
||
return '.';
|
||
}
|
||
let rootEnd = 0;
|
||
let device;
|
||
let isAbsolute = false;
|
||
const code = path.charCodeAt(0);
|
||
// Try to match a root
|
||
if (len === 1) {
|
||
// `path` contains just a single char, exit early to avoid
|
||
// unnecessary work
|
||
return isPosixPathSeparator(code) ? '\\' : path;
|
||
}
|
||
if (isPathSeparator(code)) {
|
||
// Possible UNC root
|
||
// If we started with a separator, we know we at least have an absolute
|
||
// path of some kind (UNC or otherwise)
|
||
isAbsolute = true;
|
||
if (isPathSeparator(path.charCodeAt(1))) {
|
||
// Matched double path separator at beginning
|
||
let j = 2;
|
||
let last = j;
|
||
// Match 1 or more non-path separators
|
||
while (j < len && !isPathSeparator(path.charCodeAt(j))) {
|
||
j++;
|
||
}
|
||
if (j < len && j !== last) {
|
||
const firstPart = path.slice(last, j);
|
||
// Matched!
|
||
last = j;
|
||
// Match 1 or more path separators
|
||
while (j < len && isPathSeparator(path.charCodeAt(j))) {
|
||
j++;
|
||
}
|
||
if (j < len && j !== last) {
|
||
// Matched!
|
||
last = j;
|
||
// Match 1 or more non-path separators
|
||
while (j < len && !isPathSeparator(path.charCodeAt(j))) {
|
||
j++;
|
||
}
|
||
if (j === len) {
|
||
// We matched a UNC root only
|
||
// Return the normalized version of the UNC root since there
|
||
// is nothing left to process
|
||
return `\\\\${firstPart}\\${path.slice(last)}\\`;
|
||
}
|
||
if (j !== last) {
|
||
// We matched a UNC root with leftovers
|
||
device = `\\\\${firstPart}\\${path.slice(last, j)}`;
|
||
rootEnd = j;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
else {
|
||
rootEnd = 1;
|
||
}
|
||
}
|
||
else if (isWindowsDeviceRoot(code) && path.charCodeAt(1) === CHAR_COLON) {
|
||
// Possible device root
|
||
device = path.slice(0, 2);
|
||
rootEnd = 2;
|
||
if (len > 2 && isPathSeparator(path.charCodeAt(2))) {
|
||
// Treat separator following drive name as an absolute path
|
||
// indicator
|
||
isAbsolute = true;
|
||
rootEnd = 3;
|
||
}
|
||
}
|
||
let tail = rootEnd < len ?
|
||
normalizeString(path.slice(rootEnd), !isAbsolute, '\\', isPathSeparator) :
|
||
'';
|
||
if (tail.length === 0 && !isAbsolute) {
|
||
tail = '.';
|
||
}
|
||
if (tail.length > 0 && isPathSeparator(path.charCodeAt(len - 1))) {
|
||
tail += '\\';
|
||
}
|
||
if (device === undefined) {
|
||
return isAbsolute ? `\\${tail}` : tail;
|
||
}
|
||
return isAbsolute ? `${device}\\${tail}` : `${device}${tail}`;
|
||
},
|
||
isAbsolute(path) {
|
||
validateString(path, 'path');
|
||
const len = path.length;
|
||
if (len === 0) {
|
||
return false;
|
||
}
|
||
const code = path.charCodeAt(0);
|
||
return isPathSeparator(code) ||
|
||
// Possible device root
|
||
(len > 2 &&
|
||
isWindowsDeviceRoot(code) &&
|
||
path.charCodeAt(1) === CHAR_COLON &&
|
||
isPathSeparator(path.charCodeAt(2)));
|
||
},
|
||
join(...paths) {
|
||
if (paths.length === 0) {
|
||
return '.';
|
||
}
|
||
let joined;
|
||
let firstPart;
|
||
for (let i = 0; i < paths.length; ++i) {
|
||
const arg = paths[i];
|
||
validateString(arg, 'path');
|
||
if (arg.length > 0) {
|
||
if (joined === undefined) {
|
||
joined = firstPart = arg;
|
||
}
|
||
else {
|
||
joined += `\\${arg}`;
|
||
}
|
||
}
|
||
}
|
||
if (joined === undefined) {
|
||
return '.';
|
||
}
|
||
// Make sure that the joined path doesn't start with two slashes, because
|
||
// normalize() will mistake it for a UNC path then.
|
||
//
|
||
// This step is skipped when it is very clear that the user actually
|
||
// intended to point at a UNC path. This is assumed when the first
|
||
// non-empty string arguments starts with exactly two slashes followed by
|
||
// at least one more non-slash character.
|
||
//
|
||
// Note that for normalize() to treat a path as a UNC path it needs to
|
||
// have at least 2 components, so we don't filter for that here.
|
||
// This means that the user can use join to construct UNC paths from
|
||
// a server name and a share name; for example:
|
||
// path.join('//server', 'share') -> '\\\\server\\share\\')
|
||
let needsReplace = true;
|
||
let slashCount = 0;
|
||
if (typeof firstPart === 'string' && isPathSeparator(firstPart.charCodeAt(0))) {
|
||
++slashCount;
|
||
const firstLen = firstPart.length;
|
||
if (firstLen > 1 && isPathSeparator(firstPart.charCodeAt(1))) {
|
||
++slashCount;
|
||
if (firstLen > 2) {
|
||
if (isPathSeparator(firstPart.charCodeAt(2))) {
|
||
++slashCount;
|
||
}
|
||
else {
|
||
// We matched a UNC path in the first part
|
||
needsReplace = false;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
if (needsReplace) {
|
||
// Find any more consecutive slashes we need to replace
|
||
while (slashCount < joined.length &&
|
||
isPathSeparator(joined.charCodeAt(slashCount))) {
|
||
slashCount++;
|
||
}
|
||
// Replace the slashes if needed
|
||
if (slashCount >= 2) {
|
||
joined = `\\${joined.slice(slashCount)}`;
|
||
}
|
||
}
|
||
return exports.win32.normalize(joined);
|
||
},
|
||
// It will solve the relative path from `from` to `to`, for instance:
|
||
// from = 'C:\\orandea\\test\\aaa'
|
||
// to = 'C:\\orandea\\impl\\bbb'
|
||
// The output of the function should be: '..\\..\\impl\\bbb'
|
||
relative(from, to) {
|
||
validateString(from, 'from');
|
||
validateString(to, 'to');
|
||
if (from === to) {
|
||
return '';
|
||
}
|
||
const fromOrig = exports.win32.resolve(from);
|
||
const toOrig = exports.win32.resolve(to);
|
||
if (fromOrig === toOrig) {
|
||
return '';
|
||
}
|
||
from = fromOrig.toLowerCase();
|
||
to = toOrig.toLowerCase();
|
||
if (from === to) {
|
||
return '';
|
||
}
|
||
// Trim any leading backslashes
|
||
let fromStart = 0;
|
||
while (fromStart < from.length &&
|
||
from.charCodeAt(fromStart) === CHAR_BACKWARD_SLASH) {
|
||
fromStart++;
|
||
}
|
||
// Trim trailing backslashes (applicable to UNC paths only)
|
||
let fromEnd = from.length;
|
||
while (fromEnd - 1 > fromStart &&
|
||
from.charCodeAt(fromEnd - 1) === CHAR_BACKWARD_SLASH) {
|
||
fromEnd--;
|
||
}
|
||
const fromLen = fromEnd - fromStart;
|
||
// Trim any leading backslashes
|
||
let toStart = 0;
|
||
while (toStart < to.length &&
|
||
to.charCodeAt(toStart) === CHAR_BACKWARD_SLASH) {
|
||
toStart++;
|
||
}
|
||
// Trim trailing backslashes (applicable to UNC paths only)
|
||
let toEnd = to.length;
|
||
while (toEnd - 1 > toStart &&
|
||
to.charCodeAt(toEnd - 1) === CHAR_BACKWARD_SLASH) {
|
||
toEnd--;
|
||
}
|
||
const toLen = toEnd - toStart;
|
||
// Compare paths to find the longest common path from root
|
||
const length = fromLen < toLen ? fromLen : toLen;
|
||
let lastCommonSep = -1;
|
||
let i = 0;
|
||
for (; i < length; i++) {
|
||
const fromCode = from.charCodeAt(fromStart + i);
|
||
if (fromCode !== to.charCodeAt(toStart + i)) {
|
||
break;
|
||
}
|
||
else if (fromCode === CHAR_BACKWARD_SLASH) {
|
||
lastCommonSep = i;
|
||
}
|
||
}
|
||
// We found a mismatch before the first common path separator was seen, so
|
||
// return the original `to`.
|
||
if (i !== length) {
|
||
if (lastCommonSep === -1) {
|
||
return toOrig;
|
||
}
|
||
}
|
||
else {
|
||
if (toLen > length) {
|
||
if (to.charCodeAt(toStart + i) === CHAR_BACKWARD_SLASH) {
|
||
// We get here if `from` is the exact base path for `to`.
|
||
// For example: from='C:\\foo\\bar'; to='C:\\foo\\bar\\baz'
|
||
return toOrig.slice(toStart + i + 1);
|
||
}
|
||
if (i === 2) {
|
||
// We get here if `from` is the device root.
|
||
// For example: from='C:\\'; to='C:\\foo'
|
||
return toOrig.slice(toStart + i);
|
||
}
|
||
}
|
||
if (fromLen > length) {
|
||
if (from.charCodeAt(fromStart + i) === CHAR_BACKWARD_SLASH) {
|
||
// We get here if `to` is the exact base path for `from`.
|
||
// For example: from='C:\\foo\\bar'; to='C:\\foo'
|
||
lastCommonSep = i;
|
||
}
|
||
else if (i === 2) {
|
||
// We get here if `to` is the device root.
|
||
// For example: from='C:\\foo\\bar'; to='C:\\'
|
||
lastCommonSep = 3;
|
||
}
|
||
}
|
||
if (lastCommonSep === -1) {
|
||
lastCommonSep = 0;
|
||
}
|
||
}
|
||
let out = '';
|
||
// Generate the relative path based on the path difference between `to` and
|
||
// `from`
|
||
for (i = fromStart + lastCommonSep + 1; i <= fromEnd; ++i) {
|
||
if (i === fromEnd || from.charCodeAt(i) === CHAR_BACKWARD_SLASH) {
|
||
out += out.length === 0 ? '..' : '\\..';
|
||
}
|
||
}
|
||
toStart += lastCommonSep;
|
||
// Lastly, append the rest of the destination (`to`) path that comes after
|
||
// the common path parts
|
||
if (out.length > 0) {
|
||
return `${out}${toOrig.slice(toStart, toEnd)}`;
|
||
}
|
||
if (toOrig.charCodeAt(toStart) === CHAR_BACKWARD_SLASH) {
|
||
++toStart;
|
||
}
|
||
return toOrig.slice(toStart, toEnd);
|
||
},
|
||
toNamespacedPath(path) {
|
||
// Note: this will *probably* throw somewhere.
|
||
if (typeof path !== 'string' || path.length === 0) {
|
||
return path;
|
||
}
|
||
const resolvedPath = exports.win32.resolve(path);
|
||
if (resolvedPath.length <= 2) {
|
||
return path;
|
||
}
|
||
if (resolvedPath.charCodeAt(0) === CHAR_BACKWARD_SLASH) {
|
||
// Possible UNC root
|
||
if (resolvedPath.charCodeAt(1) === CHAR_BACKWARD_SLASH) {
|
||
const code = resolvedPath.charCodeAt(2);
|
||
if (code !== CHAR_QUESTION_MARK && code !== CHAR_DOT) {
|
||
// Matched non-long UNC root, convert the path to a long UNC path
|
||
return `\\\\?\\UNC\\${resolvedPath.slice(2)}`;
|
||
}
|
||
}
|
||
}
|
||
else if (isWindowsDeviceRoot(resolvedPath.charCodeAt(0)) &&
|
||
resolvedPath.charCodeAt(1) === CHAR_COLON &&
|
||
resolvedPath.charCodeAt(2) === CHAR_BACKWARD_SLASH) {
|
||
// Matched device root, convert the path to a long UNC path
|
||
return `\\\\?\\${resolvedPath}`;
|
||
}
|
||
return path;
|
||
},
|
||
dirname(path) {
|
||
validateString(path, 'path');
|
||
const len = path.length;
|
||
if (len === 0) {
|
||
return '.';
|
||
}
|
||
let rootEnd = -1;
|
||
let offset = 0;
|
||
const code = path.charCodeAt(0);
|
||
if (len === 1) {
|
||
// `path` contains just a path separator, exit early to avoid
|
||
// unnecessary work or a dot.
|
||
return isPathSeparator(code) ? path : '.';
|
||
}
|
||
// Try to match a root
|
||
if (isPathSeparator(code)) {
|
||
// Possible UNC root
|
||
rootEnd = offset = 1;
|
||
if (isPathSeparator(path.charCodeAt(1))) {
|
||
// Matched double path separator at beginning
|
||
let j = 2;
|
||
let last = j;
|
||
// Match 1 or more non-path separators
|
||
while (j < len && !isPathSeparator(path.charCodeAt(j))) {
|
||
j++;
|
||
}
|
||
if (j < len && j !== last) {
|
||
// Matched!
|
||
last = j;
|
||
// Match 1 or more path separators
|
||
while (j < len && isPathSeparator(path.charCodeAt(j))) {
|
||
j++;
|
||
}
|
||
if (j < len && j !== last) {
|
||
// Matched!
|
||
last = j;
|
||
// Match 1 or more non-path separators
|
||
while (j < len && !isPathSeparator(path.charCodeAt(j))) {
|
||
j++;
|
||
}
|
||
if (j === len) {
|
||
// We matched a UNC root only
|
||
return path;
|
||
}
|
||
if (j !== last) {
|
||
// We matched a UNC root with leftovers
|
||
// Offset by 1 to include the separator after the UNC root to
|
||
// treat it as a "normal root" on top of a (UNC) root
|
||
rootEnd = offset = j + 1;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
// Possible device root
|
||
}
|
||
else if (isWindowsDeviceRoot(code) && path.charCodeAt(1) === CHAR_COLON) {
|
||
rootEnd = len > 2 && isPathSeparator(path.charCodeAt(2)) ? 3 : 2;
|
||
offset = rootEnd;
|
||
}
|
||
let end = -1;
|
||
let matchedSlash = true;
|
||
for (let i = len - 1; i >= offset; --i) {
|
||
if (isPathSeparator(path.charCodeAt(i))) {
|
||
if (!matchedSlash) {
|
||
end = i;
|
||
break;
|
||
}
|
||
}
|
||
else {
|
||
// We saw the first non-path separator
|
||
matchedSlash = false;
|
||
}
|
||
}
|
||
if (end === -1) {
|
||
if (rootEnd === -1) {
|
||
return '.';
|
||
}
|
||
end = rootEnd;
|
||
}
|
||
return path.slice(0, end);
|
||
},
|
||
basename(path, suffix) {
|
||
if (suffix !== undefined) {
|
||
validateString(suffix, 'suffix');
|
||
}
|
||
validateString(path, 'path');
|
||
let start = 0;
|
||
let end = -1;
|
||
let matchedSlash = true;
|
||
let i;
|
||
// Check for a drive letter prefix so as not to mistake the following
|
||
// path separator as an extra separator at the end of the path that can be
|
||
// disregarded
|
||
if (path.length >= 2 &&
|
||
isWindowsDeviceRoot(path.charCodeAt(0)) &&
|
||
path.charCodeAt(1) === CHAR_COLON) {
|
||
start = 2;
|
||
}
|
||
if (suffix !== undefined && suffix.length > 0 && suffix.length <= path.length) {
|
||
if (suffix === path) {
|
||
return '';
|
||
}
|
||
let extIdx = suffix.length - 1;
|
||
let firstNonSlashEnd = -1;
|
||
for (i = path.length - 1; i >= start; --i) {
|
||
const code = path.charCodeAt(i);
|
||
if (isPathSeparator(code)) {
|
||
// If we reached a path separator that was not part of a set of path
|
||
// separators at the end of the string, stop now
|
||
if (!matchedSlash) {
|
||
start = i + 1;
|
||
break;
|
||
}
|
||
}
|
||
else {
|
||
if (firstNonSlashEnd === -1) {
|
||
// We saw the first non-path separator, remember this index in case
|
||
// we need it if the extension ends up not matching
|
||
matchedSlash = false;
|
||
firstNonSlashEnd = i + 1;
|
||
}
|
||
if (extIdx >= 0) {
|
||
// Try to match the explicit extension
|
||
if (code === suffix.charCodeAt(extIdx)) {
|
||
if (--extIdx === -1) {
|
||
// We matched the extension, so mark this as the end of our path
|
||
// component
|
||
end = i;
|
||
}
|
||
}
|
||
else {
|
||
// Extension does not match, so our result is the entire path
|
||
// component
|
||
extIdx = -1;
|
||
end = firstNonSlashEnd;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
if (start === end) {
|
||
end = firstNonSlashEnd;
|
||
}
|
||
else if (end === -1) {
|
||
end = path.length;
|
||
}
|
||
return path.slice(start, end);
|
||
}
|
||
for (i = path.length - 1; i >= start; --i) {
|
||
if (isPathSeparator(path.charCodeAt(i))) {
|
||
// If we reached a path separator that was not part of a set of path
|
||
// separators at the end of the string, stop now
|
||
if (!matchedSlash) {
|
||
start = i + 1;
|
||
break;
|
||
}
|
||
}
|
||
else if (end === -1) {
|
||
// We saw the first non-path separator, mark this as the end of our
|
||
// path component
|
||
matchedSlash = false;
|
||
end = i + 1;
|
||
}
|
||
}
|
||
if (end === -1) {
|
||
return '';
|
||
}
|
||
return path.slice(start, end);
|
||
},
|
||
extname(path) {
|
||
validateString(path, 'path');
|
||
let start = 0;
|
||
let startDot = -1;
|
||
let startPart = 0;
|
||
let end = -1;
|
||
let matchedSlash = true;
|
||
// Track the state of characters (if any) we see before our first dot and
|
||
// after any path separator we find
|
||
let preDotState = 0;
|
||
// Check for a drive letter prefix so as not to mistake the following
|
||
// path separator as an extra separator at the end of the path that can be
|
||
// disregarded
|
||
if (path.length >= 2 &&
|
||
path.charCodeAt(1) === CHAR_COLON &&
|
||
isWindowsDeviceRoot(path.charCodeAt(0))) {
|
||
start = startPart = 2;
|
||
}
|
||
for (let i = path.length - 1; i >= start; --i) {
|
||
const code = path.charCodeAt(i);
|
||
if (isPathSeparator(code)) {
|
||
// If we reached a path separator that was not part of a set of path
|
||
// separators at the end of the string, stop now
|
||
if (!matchedSlash) {
|
||
startPart = i + 1;
|
||
break;
|
||
}
|
||
continue;
|
||
}
|
||
if (end === -1) {
|
||
// We saw the first non-path separator, mark this as the end of our
|
||
// extension
|
||
matchedSlash = false;
|
||
end = i + 1;
|
||
}
|
||
if (code === CHAR_DOT) {
|
||
// If this is our first dot, mark it as the start of our extension
|
||
if (startDot === -1) {
|
||
startDot = i;
|
||
}
|
||
else if (preDotState !== 1) {
|
||
preDotState = 1;
|
||
}
|
||
}
|
||
else if (startDot !== -1) {
|
||
// We saw a non-dot and non-path separator before our dot, so we should
|
||
// have a good chance at having a non-empty extension
|
||
preDotState = -1;
|
||
}
|
||
}
|
||
if (startDot === -1 ||
|
||
end === -1 ||
|
||
// We saw a non-dot character immediately before the dot
|
||
preDotState === 0 ||
|
||
// The (right-most) trimmed path component is exactly '..'
|
||
(preDotState === 1 &&
|
||
startDot === end - 1 &&
|
||
startDot === startPart + 1)) {
|
||
return '';
|
||
}
|
||
return path.slice(startDot, end);
|
||
},
|
||
format: _format.bind(null, '\\'),
|
||
parse(path) {
|
||
validateString(path, 'path');
|
||
const ret = { root: '', dir: '', base: '', ext: '', name: '' };
|
||
if (path.length === 0) {
|
||
return ret;
|
||
}
|
||
const len = path.length;
|
||
let rootEnd = 0;
|
||
let code = path.charCodeAt(0);
|
||
if (len === 1) {
|
||
if (isPathSeparator(code)) {
|
||
// `path` contains just a path separator, exit early to avoid
|
||
// unnecessary work
|
||
ret.root = ret.dir = path;
|
||
return ret;
|
||
}
|
||
ret.base = ret.name = path;
|
||
return ret;
|
||
}
|
||
// Try to match a root
|
||
if (isPathSeparator(code)) {
|
||
// Possible UNC root
|
||
rootEnd = 1;
|
||
if (isPathSeparator(path.charCodeAt(1))) {
|
||
// Matched double path separator at beginning
|
||
let j = 2;
|
||
let last = j;
|
||
// Match 1 or more non-path separators
|
||
while (j < len && !isPathSeparator(path.charCodeAt(j))) {
|
||
j++;
|
||
}
|
||
if (j < len && j !== last) {
|
||
// Matched!
|
||
last = j;
|
||
// Match 1 or more path separators
|
||
while (j < len && isPathSeparator(path.charCodeAt(j))) {
|
||
j++;
|
||
}
|
||
if (j < len && j !== last) {
|
||
// Matched!
|
||
last = j;
|
||
// Match 1 or more non-path separators
|
||
while (j < len && !isPathSeparator(path.charCodeAt(j))) {
|
||
j++;
|
||
}
|
||
if (j === len) {
|
||
// We matched a UNC root only
|
||
rootEnd = j;
|
||
}
|
||
else if (j !== last) {
|
||
// We matched a UNC root with leftovers
|
||
rootEnd = j + 1;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
else if (isWindowsDeviceRoot(code) && path.charCodeAt(1) === CHAR_COLON) {
|
||
// Possible device root
|
||
if (len <= 2) {
|
||
// `path` contains just a drive root, exit early to avoid
|
||
// unnecessary work
|
||
ret.root = ret.dir = path;
|
||
return ret;
|
||
}
|
||
rootEnd = 2;
|
||
if (isPathSeparator(path.charCodeAt(2))) {
|
||
if (len === 3) {
|
||
// `path` contains just a drive root, exit early to avoid
|
||
// unnecessary work
|
||
ret.root = ret.dir = path;
|
||
return ret;
|
||
}
|
||
rootEnd = 3;
|
||
}
|
||
}
|
||
if (rootEnd > 0) {
|
||
ret.root = path.slice(0, rootEnd);
|
||
}
|
||
let startDot = -1;
|
||
let startPart = rootEnd;
|
||
let end = -1;
|
||
let matchedSlash = true;
|
||
let i = path.length - 1;
|
||
// Track the state of characters (if any) we see before our first dot and
|
||
// after any path separator we find
|
||
let preDotState = 0;
|
||
// Get non-dir info
|
||
for (; i >= rootEnd; --i) {
|
||
code = path.charCodeAt(i);
|
||
if (isPathSeparator(code)) {
|
||
// If we reached a path separator that was not part of a set of path
|
||
// separators at the end of the string, stop now
|
||
if (!matchedSlash) {
|
||
startPart = i + 1;
|
||
break;
|
||
}
|
||
continue;
|
||
}
|
||
if (end === -1) {
|
||
// We saw the first non-path separator, mark this as the end of our
|
||
// extension
|
||
matchedSlash = false;
|
||
end = i + 1;
|
||
}
|
||
if (code === CHAR_DOT) {
|
||
// If this is our first dot, mark it as the start of our extension
|
||
if (startDot === -1) {
|
||
startDot = i;
|
||
}
|
||
else if (preDotState !== 1) {
|
||
preDotState = 1;
|
||
}
|
||
}
|
||
else if (startDot !== -1) {
|
||
// We saw a non-dot and non-path separator before our dot, so we should
|
||
// have a good chance at having a non-empty extension
|
||
preDotState = -1;
|
||
}
|
||
}
|
||
if (end !== -1) {
|
||
if (startDot === -1 ||
|
||
// We saw a non-dot character immediately before the dot
|
||
preDotState === 0 ||
|
||
// The (right-most) trimmed path component is exactly '..'
|
||
(preDotState === 1 &&
|
||
startDot === end - 1 &&
|
||
startDot === startPart + 1)) {
|
||
ret.base = ret.name = path.slice(startPart, end);
|
||
}
|
||
else {
|
||
ret.name = path.slice(startPart, startDot);
|
||
ret.base = path.slice(startPart, end);
|
||
ret.ext = path.slice(startDot, end);
|
||
}
|
||
}
|
||
// If the directory is the root, use the entire root as the `dir` including
|
||
// the trailing slash if any (`C:\abc` -> `C:\`). Otherwise, strip out the
|
||
// trailing slash (`C:\abc\def` -> `C:\abc`).
|
||
if (startPart > 0 && startPart !== rootEnd) {
|
||
ret.dir = path.slice(0, startPart - 1);
|
||
}
|
||
else {
|
||
ret.dir = ret.root;
|
||
}
|
||
return ret;
|
||
},
|
||
sep: '\\',
|
||
delimiter: ';',
|
||
win32: null,
|
||
posix: null
|
||
};
|
||
const posixCwd = (() => {
|
||
if (platformIsWin32) {
|
||
// Converts Windows' backslash path separators to POSIX forward slashes
|
||
// and truncates any drive indicator
|
||
const regexp = /\\/g;
|
||
return () => {
|
||
const cwd = process.cwd().replace(regexp, '/');
|
||
return cwd.slice(cwd.indexOf('/'));
|
||
};
|
||
}
|
||
// We're already on POSIX, no need for any transformations
|
||
return () => process.cwd();
|
||
})();
|
||
exports.posix = {
|
||
// path.resolve([from ...], to)
|
||
resolve(...pathSegments) {
|
||
let resolvedPath = '';
|
||
let resolvedAbsolute = false;
|
||
for (let i = pathSegments.length - 1; i >= -1 && !resolvedAbsolute; i--) {
|
||
const path = i >= 0 ? pathSegments[i] : posixCwd();
|
||
validateString(path, `paths[${i}]`);
|
||
// Skip empty entries
|
||
if (path.length === 0) {
|
||
continue;
|
||
}
|
||
resolvedPath = `${path}/${resolvedPath}`;
|
||
resolvedAbsolute = path.charCodeAt(0) === CHAR_FORWARD_SLASH;
|
||
}
|
||
// At this point the path should be resolved to a full absolute path, but
|
||
// handle relative paths to be safe (might happen when process.cwd() fails)
|
||
// Normalize the path
|
||
resolvedPath = normalizeString(resolvedPath, !resolvedAbsolute, '/', isPosixPathSeparator);
|
||
if (resolvedAbsolute) {
|
||
return `/${resolvedPath}`;
|
||
}
|
||
return resolvedPath.length > 0 ? resolvedPath : '.';
|
||
},
|
||
normalize(path) {
|
||
validateString(path, 'path');
|
||
if (path.length === 0) {
|
||
return '.';
|
||
}
|
||
const isAbsolute = path.charCodeAt(0) === CHAR_FORWARD_SLASH;
|
||
const trailingSeparator = path.charCodeAt(path.length - 1) === CHAR_FORWARD_SLASH;
|
||
// Normalize the path
|
||
path = normalizeString(path, !isAbsolute, '/', isPosixPathSeparator);
|
||
if (path.length === 0) {
|
||
if (isAbsolute) {
|
||
return '/';
|
||
}
|
||
return trailingSeparator ? './' : '.';
|
||
}
|
||
if (trailingSeparator) {
|
||
path += '/';
|
||
}
|
||
return isAbsolute ? `/${path}` : path;
|
||
},
|
||
isAbsolute(path) {
|
||
validateString(path, 'path');
|
||
return path.length > 0 && path.charCodeAt(0) === CHAR_FORWARD_SLASH;
|
||
},
|
||
join(...paths) {
|
||
if (paths.length === 0) {
|
||
return '.';
|
||
}
|
||
let joined;
|
||
for (let i = 0; i < paths.length; ++i) {
|
||
const arg = paths[i];
|
||
validateString(arg, 'path');
|
||
if (arg.length > 0) {
|
||
if (joined === undefined) {
|
||
joined = arg;
|
||
}
|
||
else {
|
||
joined += `/${arg}`;
|
||
}
|
||
}
|
||
}
|
||
if (joined === undefined) {
|
||
return '.';
|
||
}
|
||
return exports.posix.normalize(joined);
|
||
},
|
||
relative(from, to) {
|
||
validateString(from, 'from');
|
||
validateString(to, 'to');
|
||
if (from === to) {
|
||
return '';
|
||
}
|
||
// Trim leading forward slashes.
|
||
from = exports.posix.resolve(from);
|
||
to = exports.posix.resolve(to);
|
||
if (from === to) {
|
||
return '';
|
||
}
|
||
const fromStart = 1;
|
||
const fromEnd = from.length;
|
||
const fromLen = fromEnd - fromStart;
|
||
const toStart = 1;
|
||
const toLen = to.length - toStart;
|
||
// Compare paths to find the longest common path from root
|
||
const length = (fromLen < toLen ? fromLen : toLen);
|
||
let lastCommonSep = -1;
|
||
let i = 0;
|
||
for (; i < length; i++) {
|
||
const fromCode = from.charCodeAt(fromStart + i);
|
||
if (fromCode !== to.charCodeAt(toStart + i)) {
|
||
break;
|
||
}
|
||
else if (fromCode === CHAR_FORWARD_SLASH) {
|
||
lastCommonSep = i;
|
||
}
|
||
}
|
||
if (i === length) {
|
||
if (toLen > length) {
|
||
if (to.charCodeAt(toStart + i) === CHAR_FORWARD_SLASH) {
|
||
// We get here if `from` is the exact base path for `to`.
|
||
// For example: from='/foo/bar'; to='/foo/bar/baz'
|
||
return to.slice(toStart + i + 1);
|
||
}
|
||
if (i === 0) {
|
||
// We get here if `from` is the root
|
||
// For example: from='/'; to='/foo'
|
||
return to.slice(toStart + i);
|
||
}
|
||
}
|
||
else if (fromLen > length) {
|
||
if (from.charCodeAt(fromStart + i) === CHAR_FORWARD_SLASH) {
|
||
// We get here if `to` is the exact base path for `from`.
|
||
// For example: from='/foo/bar/baz'; to='/foo/bar'
|
||
lastCommonSep = i;
|
||
}
|
||
else if (i === 0) {
|
||
// We get here if `to` is the root.
|
||
// For example: from='/foo/bar'; to='/'
|
||
lastCommonSep = 0;
|
||
}
|
||
}
|
||
}
|
||
let out = '';
|
||
// Generate the relative path based on the path difference between `to`
|
||
// and `from`.
|
||
for (i = fromStart + lastCommonSep + 1; i <= fromEnd; ++i) {
|
||
if (i === fromEnd || from.charCodeAt(i) === CHAR_FORWARD_SLASH) {
|
||
out += out.length === 0 ? '..' : '/..';
|
||
}
|
||
}
|
||
// Lastly, append the rest of the destination (`to`) path that comes after
|
||
// the common path parts.
|
||
return `${out}${to.slice(toStart + lastCommonSep)}`;
|
||
},
|
||
toNamespacedPath(path) {
|
||
// Non-op on posix systems
|
||
return path;
|
||
},
|
||
dirname(path) {
|
||
validateString(path, 'path');
|
||
if (path.length === 0) {
|
||
return '.';
|
||
}
|
||
const hasRoot = path.charCodeAt(0) === CHAR_FORWARD_SLASH;
|
||
let end = -1;
|
||
let matchedSlash = true;
|
||
for (let i = path.length - 1; i >= 1; --i) {
|
||
if (path.charCodeAt(i) === CHAR_FORWARD_SLASH) {
|
||
if (!matchedSlash) {
|
||
end = i;
|
||
break;
|
||
}
|
||
}
|
||
else {
|
||
// We saw the first non-path separator
|
||
matchedSlash = false;
|
||
}
|
||
}
|
||
if (end === -1) {
|
||
return hasRoot ? '/' : '.';
|
||
}
|
||
if (hasRoot && end === 1) {
|
||
return '//';
|
||
}
|
||
return path.slice(0, end);
|
||
},
|
||
basename(path, suffix) {
|
||
if (suffix !== undefined) {
|
||
validateString(suffix, 'ext');
|
||
}
|
||
validateString(path, 'path');
|
||
let start = 0;
|
||
let end = -1;
|
||
let matchedSlash = true;
|
||
let i;
|
||
if (suffix !== undefined && suffix.length > 0 && suffix.length <= path.length) {
|
||
if (suffix === path) {
|
||
return '';
|
||
}
|
||
let extIdx = suffix.length - 1;
|
||
let firstNonSlashEnd = -1;
|
||
for (i = path.length - 1; i >= 0; --i) {
|
||
const code = path.charCodeAt(i);
|
||
if (code === CHAR_FORWARD_SLASH) {
|
||
// If we reached a path separator that was not part of a set of path
|
||
// separators at the end of the string, stop now
|
||
if (!matchedSlash) {
|
||
start = i + 1;
|
||
break;
|
||
}
|
||
}
|
||
else {
|
||
if (firstNonSlashEnd === -1) {
|
||
// We saw the first non-path separator, remember this index in case
|
||
// we need it if the extension ends up not matching
|
||
matchedSlash = false;
|
||
firstNonSlashEnd = i + 1;
|
||
}
|
||
if (extIdx >= 0) {
|
||
// Try to match the explicit extension
|
||
if (code === suffix.charCodeAt(extIdx)) {
|
||
if (--extIdx === -1) {
|
||
// We matched the extension, so mark this as the end of our path
|
||
// component
|
||
end = i;
|
||
}
|
||
}
|
||
else {
|
||
// Extension does not match, so our result is the entire path
|
||
// component
|
||
extIdx = -1;
|
||
end = firstNonSlashEnd;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
if (start === end) {
|
||
end = firstNonSlashEnd;
|
||
}
|
||
else if (end === -1) {
|
||
end = path.length;
|
||
}
|
||
return path.slice(start, end);
|
||
}
|
||
for (i = path.length - 1; i >= 0; --i) {
|
||
if (path.charCodeAt(i) === CHAR_FORWARD_SLASH) {
|
||
// If we reached a path separator that was not part of a set of path
|
||
// separators at the end of the string, stop now
|
||
if (!matchedSlash) {
|
||
start = i + 1;
|
||
break;
|
||
}
|
||
}
|
||
else if (end === -1) {
|
||
// We saw the first non-path separator, mark this as the end of our
|
||
// path component
|
||
matchedSlash = false;
|
||
end = i + 1;
|
||
}
|
||
}
|
||
if (end === -1) {
|
||
return '';
|
||
}
|
||
return path.slice(start, end);
|
||
},
|
||
extname(path) {
|
||
validateString(path, 'path');
|
||
let startDot = -1;
|
||
let startPart = 0;
|
||
let end = -1;
|
||
let matchedSlash = true;
|
||
// Track the state of characters (if any) we see before our first dot and
|
||
// after any path separator we find
|
||
let preDotState = 0;
|
||
for (let i = path.length - 1; i >= 0; --i) {
|
||
const code = path.charCodeAt(i);
|
||
if (code === CHAR_FORWARD_SLASH) {
|
||
// If we reached a path separator that was not part of a set of path
|
||
// separators at the end of the string, stop now
|
||
if (!matchedSlash) {
|
||
startPart = i + 1;
|
||
break;
|
||
}
|
||
continue;
|
||
}
|
||
if (end === -1) {
|
||
// We saw the first non-path separator, mark this as the end of our
|
||
// extension
|
||
matchedSlash = false;
|
||
end = i + 1;
|
||
}
|
||
if (code === CHAR_DOT) {
|
||
// If this is our first dot, mark it as the start of our extension
|
||
if (startDot === -1) {
|
||
startDot = i;
|
||
}
|
||
else if (preDotState !== 1) {
|
||
preDotState = 1;
|
||
}
|
||
}
|
||
else if (startDot !== -1) {
|
||
// We saw a non-dot and non-path separator before our dot, so we should
|
||
// have a good chance at having a non-empty extension
|
||
preDotState = -1;
|
||
}
|
||
}
|
||
if (startDot === -1 ||
|
||
end === -1 ||
|
||
// We saw a non-dot character immediately before the dot
|
||
preDotState === 0 ||
|
||
// The (right-most) trimmed path component is exactly '..'
|
||
(preDotState === 1 &&
|
||
startDot === end - 1 &&
|
||
startDot === startPart + 1)) {
|
||
return '';
|
||
}
|
||
return path.slice(startDot, end);
|
||
},
|
||
format: _format.bind(null, '/'),
|
||
parse(path) {
|
||
validateString(path, 'path');
|
||
const ret = { root: '', dir: '', base: '', ext: '', name: '' };
|
||
if (path.length === 0) {
|
||
return ret;
|
||
}
|
||
const isAbsolute = path.charCodeAt(0) === CHAR_FORWARD_SLASH;
|
||
let start;
|
||
if (isAbsolute) {
|
||
ret.root = '/';
|
||
start = 1;
|
||
}
|
||
else {
|
||
start = 0;
|
||
}
|
||
let startDot = -1;
|
||
let startPart = 0;
|
||
let end = -1;
|
||
let matchedSlash = true;
|
||
let i = path.length - 1;
|
||
// Track the state of characters (if any) we see before our first dot and
|
||
// after any path separator we find
|
||
let preDotState = 0;
|
||
// Get non-dir info
|
||
for (; i >= start; --i) {
|
||
const code = path.charCodeAt(i);
|
||
if (code === CHAR_FORWARD_SLASH) {
|
||
// If we reached a path separator that was not part of a set of path
|
||
// separators at the end of the string, stop now
|
||
if (!matchedSlash) {
|
||
startPart = i + 1;
|
||
break;
|
||
}
|
||
continue;
|
||
}
|
||
if (end === -1) {
|
||
// We saw the first non-path separator, mark this as the end of our
|
||
// extension
|
||
matchedSlash = false;
|
||
end = i + 1;
|
||
}
|
||
if (code === CHAR_DOT) {
|
||
// If this is our first dot, mark it as the start of our extension
|
||
if (startDot === -1) {
|
||
startDot = i;
|
||
}
|
||
else if (preDotState !== 1) {
|
||
preDotState = 1;
|
||
}
|
||
}
|
||
else if (startDot !== -1) {
|
||
// We saw a non-dot and non-path separator before our dot, so we should
|
||
// have a good chance at having a non-empty extension
|
||
preDotState = -1;
|
||
}
|
||
}
|
||
if (end !== -1) {
|
||
const start = startPart === 0 && isAbsolute ? 1 : startPart;
|
||
if (startDot === -1 ||
|
||
// We saw a non-dot character immediately before the dot
|
||
preDotState === 0 ||
|
||
// The (right-most) trimmed path component is exactly '..'
|
||
(preDotState === 1 &&
|
||
startDot === end - 1 &&
|
||
startDot === startPart + 1)) {
|
||
ret.base = ret.name = path.slice(start, end);
|
||
}
|
||
else {
|
||
ret.name = path.slice(start, startDot);
|
||
ret.base = path.slice(start, end);
|
||
ret.ext = path.slice(startDot, end);
|
||
}
|
||
}
|
||
if (startPart > 0) {
|
||
ret.dir = path.slice(0, startPart - 1);
|
||
}
|
||
else if (isAbsolute) {
|
||
ret.dir = '/';
|
||
}
|
||
return ret;
|
||
},
|
||
sep: '/',
|
||
delimiter: ':',
|
||
win32: null,
|
||
posix: null
|
||
};
|
||
exports.posix.win32 = exports.win32.win32 = exports.win32;
|
||
exports.posix.posix = exports.win32.posix = exports.posix;
|
||
exports.normalize = (platformIsWin32 ? exports.win32.normalize : exports.posix.normalize);
|
||
exports.join = (platformIsWin32 ? exports.win32.join : exports.posix.join);
|
||
exports.resolve = (platformIsWin32 ? exports.win32.resolve : exports.posix.resolve);
|
||
exports.relative = (platformIsWin32 ? exports.win32.relative : exports.posix.relative);
|
||
exports.dirname = (platformIsWin32 ? exports.win32.dirname : exports.posix.dirname);
|
||
exports.basename = (platformIsWin32 ? exports.win32.basename : exports.posix.basename);
|
||
exports.extname = (platformIsWin32 ? exports.win32.extname : exports.posix.extname);
|
||
exports.sep = (platformIsWin32 ? exports.win32.sep : exports.posix.sep);
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[14/*vs/base/common/uri*/], __M([0/*require*/,1/*exports*/,37/*vs/base/common/path*/,11/*vs/base/common/platform*/]), function (require, exports, paths, platform_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.URI = void 0;
|
||
exports.uriToFsPath = uriToFsPath;
|
||
const _schemePattern = /^\w[\w\d+.-]*$/;
|
||
const _singleSlashStart = /^\//;
|
||
const _doubleSlashStart = /^\/\//;
|
||
function _validateUri(ret, _strict) {
|
||
// scheme, must be set
|
||
if (!ret.scheme && _strict) {
|
||
throw new Error(`[UriError]: Scheme is missing: {scheme: "", authority: "${ret.authority}", path: "${ret.path}", query: "${ret.query}", fragment: "${ret.fragment}"}`);
|
||
}
|
||
// scheme, https://tools.ietf.org/html/rfc3986#section-3.1
|
||
// ALPHA *( ALPHA / DIGIT / "+" / "-" / "." )
|
||
if (ret.scheme && !_schemePattern.test(ret.scheme)) {
|
||
throw new Error('[UriError]: Scheme contains illegal characters.');
|
||
}
|
||
// path, http://tools.ietf.org/html/rfc3986#section-3.3
|
||
// If a URI contains an authority component, then the path component
|
||
// must either be empty or begin with a slash ("/") character. If a URI
|
||
// does not contain an authority component, then the path cannot begin
|
||
// with two slash characters ("//").
|
||
if (ret.path) {
|
||
if (ret.authority) {
|
||
if (!_singleSlashStart.test(ret.path)) {
|
||
throw new Error('[UriError]: If a URI contains an authority component, then the path component must either be empty or begin with a slash ("/") character');
|
||
}
|
||
}
|
||
else {
|
||
if (_doubleSlashStart.test(ret.path)) {
|
||
throw new Error('[UriError]: If a URI does not contain an authority component, then the path cannot begin with two slash characters ("//")');
|
||
}
|
||
}
|
||
}
|
||
}
|
||
// for a while we allowed uris *without* schemes and this is the migration
|
||
// for them, e.g. an uri without scheme and without strict-mode warns and falls
|
||
// back to the file-scheme. that should cause the least carnage and still be a
|
||
// clear warning
|
||
function _schemeFix(scheme, _strict) {
|
||
if (!scheme && !_strict) {
|
||
return 'file';
|
||
}
|
||
return scheme;
|
||
}
|
||
// implements a bit of https://tools.ietf.org/html/rfc3986#section-5
|
||
function _referenceResolution(scheme, path) {
|
||
// the slash-character is our 'default base' as we don't
|
||
// support constructing URIs relative to other URIs. This
|
||
// also means that we alter and potentially break paths.
|
||
// see https://tools.ietf.org/html/rfc3986#section-5.1.4
|
||
switch (scheme) {
|
||
case 'https':
|
||
case 'http':
|
||
case 'file':
|
||
if (!path) {
|
||
path = _slash;
|
||
}
|
||
else if (path[0] !== _slash) {
|
||
path = _slash + path;
|
||
}
|
||
break;
|
||
}
|
||
return path;
|
||
}
|
||
const _empty = '';
|
||
const _slash = '/';
|
||
const _regexp = /^(([^:/?#]+?):)?(\/\/([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?/;
|
||
/**
|
||
* Uniform Resource Identifier (URI) http://tools.ietf.org/html/rfc3986.
|
||
* This class is a simple parser which creates the basic component parts
|
||
* (http://tools.ietf.org/html/rfc3986#section-3) with minimal validation
|
||
* and encoding.
|
||
*
|
||
* ```txt
|
||
* foo://example.com:8042/over/there?name=ferret#nose
|
||
* \_/ \______________/\_________/ \_________/ \__/
|
||
* | | | | |
|
||
* scheme authority path query fragment
|
||
* | _____________________|__
|
||
* / \ / \
|
||
* urn:example:animal:ferret:nose
|
||
* ```
|
||
*/
|
||
class URI {
|
||
static isUri(thing) {
|
||
if (thing instanceof URI) {
|
||
return true;
|
||
}
|
||
if (!thing) {
|
||
return false;
|
||
}
|
||
return typeof thing.authority === 'string'
|
||
&& typeof thing.fragment === 'string'
|
||
&& typeof thing.path === 'string'
|
||
&& typeof thing.query === 'string'
|
||
&& typeof thing.scheme === 'string'
|
||
&& typeof thing.fsPath === 'string'
|
||
&& typeof thing.with === 'function'
|
||
&& typeof thing.toString === 'function';
|
||
}
|
||
/**
|
||
* @internal
|
||
*/
|
||
constructor(schemeOrData, authority, path, query, fragment, _strict = false) {
|
||
if (typeof schemeOrData === 'object') {
|
||
this.scheme = schemeOrData.scheme || _empty;
|
||
this.authority = schemeOrData.authority || _empty;
|
||
this.path = schemeOrData.path || _empty;
|
||
this.query = schemeOrData.query || _empty;
|
||
this.fragment = schemeOrData.fragment || _empty;
|
||
// no validation because it's this URI
|
||
// that creates uri components.
|
||
// _validateUri(this);
|
||
}
|
||
else {
|
||
this.scheme = _schemeFix(schemeOrData, _strict);
|
||
this.authority = authority || _empty;
|
||
this.path = _referenceResolution(this.scheme, path || _empty);
|
||
this.query = query || _empty;
|
||
this.fragment = fragment || _empty;
|
||
_validateUri(this, _strict);
|
||
}
|
||
}
|
||
// ---- filesystem path -----------------------
|
||
/**
|
||
* Returns a string representing the corresponding file system path of this URI.
|
||
* Will handle UNC paths, normalizes windows drive letters to lower-case, and uses the
|
||
* platform specific path separator.
|
||
*
|
||
* * Will *not* validate the path for invalid characters and semantics.
|
||
* * Will *not* look at the scheme of this URI.
|
||
* * The result shall *not* be used for display purposes but for accessing a file on disk.
|
||
*
|
||
*
|
||
* The *difference* to `URI#path` is the use of the platform specific separator and the handling
|
||
* of UNC paths. See the below sample of a file-uri with an authority (UNC path).
|
||
*
|
||
* ```ts
|
||
const u = URI.parse('file://server/c$/folder/file.txt')
|
||
u.authority === 'server'
|
||
u.path === '/shares/c$/file.txt'
|
||
u.fsPath === '\\server\c$\folder\file.txt'
|
||
```
|
||
*
|
||
* Using `URI#path` to read a file (using fs-apis) would not be enough because parts of the path,
|
||
* namely the server name, would be missing. Therefore `URI#fsPath` exists - it's sugar to ease working
|
||
* with URIs that represent files on disk (`file` scheme).
|
||
*/
|
||
get fsPath() {
|
||
// if (this.scheme !== 'file') {
|
||
// console.warn(`[UriError] calling fsPath with scheme ${this.scheme}`);
|
||
// }
|
||
return uriToFsPath(this, false);
|
||
}
|
||
// ---- modify to new -------------------------
|
||
with(change) {
|
||
if (!change) {
|
||
return this;
|
||
}
|
||
let { scheme, authority, path, query, fragment } = change;
|
||
if (scheme === undefined) {
|
||
scheme = this.scheme;
|
||
}
|
||
else if (scheme === null) {
|
||
scheme = _empty;
|
||
}
|
||
if (authority === undefined) {
|
||
authority = this.authority;
|
||
}
|
||
else if (authority === null) {
|
||
authority = _empty;
|
||
}
|
||
if (path === undefined) {
|
||
path = this.path;
|
||
}
|
||
else if (path === null) {
|
||
path = _empty;
|
||
}
|
||
if (query === undefined) {
|
||
query = this.query;
|
||
}
|
||
else if (query === null) {
|
||
query = _empty;
|
||
}
|
||
if (fragment === undefined) {
|
||
fragment = this.fragment;
|
||
}
|
||
else if (fragment === null) {
|
||
fragment = _empty;
|
||
}
|
||
if (scheme === this.scheme
|
||
&& authority === this.authority
|
||
&& path === this.path
|
||
&& query === this.query
|
||
&& fragment === this.fragment) {
|
||
return this;
|
||
}
|
||
return new Uri(scheme, authority, path, query, fragment);
|
||
}
|
||
// ---- parse & validate ------------------------
|
||
/**
|
||
* Creates a new URI from a string, e.g. `http://www.example.com/some/path`,
|
||
* `file:///usr/home`, or `scheme:with/path`.
|
||
*
|
||
* @param value A string which represents an URI (see `URI#toString`).
|
||
*/
|
||
static parse(value, _strict = false) {
|
||
const match = _regexp.exec(value);
|
||
if (!match) {
|
||
return new Uri(_empty, _empty, _empty, _empty, _empty);
|
||
}
|
||
return new Uri(match[2] || _empty, percentDecode(match[4] || _empty), percentDecode(match[5] || _empty), percentDecode(match[7] || _empty), percentDecode(match[9] || _empty), _strict);
|
||
}
|
||
/**
|
||
* Creates a new URI from a file system path, e.g. `c:\my\files`,
|
||
* `/usr/home`, or `\\server\share\some\path`.
|
||
*
|
||
* The *difference* between `URI#parse` and `URI#file` is that the latter treats the argument
|
||
* as path, not as stringified-uri. E.g. `URI.file(path)` is **not the same as**
|
||
* `URI.parse('file://' + path)` because the path might contain characters that are
|
||
* interpreted (# and ?). See the following sample:
|
||
* ```ts
|
||
const good = URI.file('/coding/c#/project1');
|
||
good.scheme === 'file';
|
||
good.path === '/coding/c#/project1';
|
||
good.fragment === '';
|
||
const bad = URI.parse('file://' + '/coding/c#/project1');
|
||
bad.scheme === 'file';
|
||
bad.path === '/coding/c'; // path is now broken
|
||
bad.fragment === '/project1';
|
||
```
|
||
*
|
||
* @param path A file system path (see `URI#fsPath`)
|
||
*/
|
||
static file(path) {
|
||
let authority = _empty;
|
||
// normalize to fwd-slashes on windows,
|
||
// on other systems bwd-slashes are valid
|
||
// filename character, eg /f\oo/ba\r.txt
|
||
if (platform_1.isWindows) {
|
||
path = path.replace(/\\/g, _slash);
|
||
}
|
||
// check for authority as used in UNC shares
|
||
// or use the path as given
|
||
if (path[0] === _slash && path[1] === _slash) {
|
||
const idx = path.indexOf(_slash, 2);
|
||
if (idx === -1) {
|
||
authority = path.substring(2);
|
||
path = _slash;
|
||
}
|
||
else {
|
||
authority = path.substring(2, idx);
|
||
path = path.substring(idx) || _slash;
|
||
}
|
||
}
|
||
return new Uri('file', authority, path, _empty, _empty);
|
||
}
|
||
/**
|
||
* Creates new URI from uri components.
|
||
*
|
||
* Unless `strict` is `true` the scheme is defaults to be `file`. This function performs
|
||
* validation and should be used for untrusted uri components retrieved from storage,
|
||
* user input, command arguments etc
|
||
*/
|
||
static from(components, strict) {
|
||
const result = new Uri(components.scheme, components.authority, components.path, components.query, components.fragment, strict);
|
||
return result;
|
||
}
|
||
/**
|
||
* Join a URI path with path fragments and normalizes the resulting path.
|
||
*
|
||
* @param uri The input URI.
|
||
* @param pathFragment The path fragment to add to the URI path.
|
||
* @returns The resulting URI.
|
||
*/
|
||
static joinPath(uri, ...pathFragment) {
|
||
if (!uri.path) {
|
||
throw new Error(`[UriError]: cannot call joinPath on URI without path`);
|
||
}
|
||
let newPath;
|
||
if (platform_1.isWindows && uri.scheme === 'file') {
|
||
newPath = URI.file(paths.win32.join(uriToFsPath(uri, true), ...pathFragment)).path;
|
||
}
|
||
else {
|
||
newPath = paths.posix.join(uri.path, ...pathFragment);
|
||
}
|
||
return uri.with({ path: newPath });
|
||
}
|
||
// ---- printing/externalize ---------------------------
|
||
/**
|
||
* Creates a string representation for this URI. It's guaranteed that calling
|
||
* `URI.parse` with the result of this function creates an URI which is equal
|
||
* to this URI.
|
||
*
|
||
* * The result shall *not* be used for display purposes but for externalization or transport.
|
||
* * The result will be encoded using the percentage encoding and encoding happens mostly
|
||
* ignore the scheme-specific encoding rules.
|
||
*
|
||
* @param skipEncoding Do not encode the result, default is `false`
|
||
*/
|
||
toString(skipEncoding = false) {
|
||
return _asFormatted(this, skipEncoding);
|
||
}
|
||
toJSON() {
|
||
return this;
|
||
}
|
||
static revive(data) {
|
||
if (!data) {
|
||
return data;
|
||
}
|
||
else if (data instanceof URI) {
|
||
return data;
|
||
}
|
||
else {
|
||
const result = new Uri(data);
|
||
result._formatted = data.external ?? null;
|
||
result._fsPath = data._sep === _pathSepMarker ? data.fsPath ?? null : null;
|
||
return result;
|
||
}
|
||
}
|
||
}
|
||
exports.URI = URI;
|
||
const _pathSepMarker = platform_1.isWindows ? 1 : undefined;
|
||
// This class exists so that URI is compatible with vscode.Uri (API).
|
||
class Uri extends URI {
|
||
constructor() {
|
||
super(...arguments);
|
||
this._formatted = null;
|
||
this._fsPath = null;
|
||
}
|
||
get fsPath() {
|
||
if (!this._fsPath) {
|
||
this._fsPath = uriToFsPath(this, false);
|
||
}
|
||
return this._fsPath;
|
||
}
|
||
toString(skipEncoding = false) {
|
||
if (!skipEncoding) {
|
||
if (!this._formatted) {
|
||
this._formatted = _asFormatted(this, false);
|
||
}
|
||
return this._formatted;
|
||
}
|
||
else {
|
||
// we don't cache that
|
||
return _asFormatted(this, true);
|
||
}
|
||
}
|
||
toJSON() {
|
||
const res = {
|
||
$mid: 1 /* MarshalledId.Uri */
|
||
};
|
||
// cached state
|
||
if (this._fsPath) {
|
||
res.fsPath = this._fsPath;
|
||
res._sep = _pathSepMarker;
|
||
}
|
||
if (this._formatted) {
|
||
res.external = this._formatted;
|
||
}
|
||
//--- uri components
|
||
if (this.path) {
|
||
res.path = this.path;
|
||
}
|
||
// TODO
|
||
// this isn't correct and can violate the UriComponents contract but
|
||
// this is part of the vscode.Uri API and we shouldn't change how that
|
||
// works anymore
|
||
if (this.scheme) {
|
||
res.scheme = this.scheme;
|
||
}
|
||
if (this.authority) {
|
||
res.authority = this.authority;
|
||
}
|
||
if (this.query) {
|
||
res.query = this.query;
|
||
}
|
||
if (this.fragment) {
|
||
res.fragment = this.fragment;
|
||
}
|
||
return res;
|
||
}
|
||
}
|
||
// reserved characters: https://tools.ietf.org/html/rfc3986#section-2.2
|
||
const encodeTable = {
|
||
[58 /* CharCode.Colon */]: '%3A', // gen-delims
|
||
[47 /* CharCode.Slash */]: '%2F',
|
||
[63 /* CharCode.QuestionMark */]: '%3F',
|
||
[35 /* CharCode.Hash */]: '%23',
|
||
[91 /* CharCode.OpenSquareBracket */]: '%5B',
|
||
[93 /* CharCode.CloseSquareBracket */]: '%5D',
|
||
[64 /* CharCode.AtSign */]: '%40',
|
||
[33 /* CharCode.ExclamationMark */]: '%21', // sub-delims
|
||
[36 /* CharCode.DollarSign */]: '%24',
|
||
[38 /* CharCode.Ampersand */]: '%26',
|
||
[39 /* CharCode.SingleQuote */]: '%27',
|
||
[40 /* CharCode.OpenParen */]: '%28',
|
||
[41 /* CharCode.CloseParen */]: '%29',
|
||
[42 /* CharCode.Asterisk */]: '%2A',
|
||
[43 /* CharCode.Plus */]: '%2B',
|
||
[44 /* CharCode.Comma */]: '%2C',
|
||
[59 /* CharCode.Semicolon */]: '%3B',
|
||
[61 /* CharCode.Equals */]: '%3D',
|
||
[32 /* CharCode.Space */]: '%20',
|
||
};
|
||
function encodeURIComponentFast(uriComponent, isPath, isAuthority) {
|
||
let res = undefined;
|
||
let nativeEncodePos = -1;
|
||
for (let pos = 0; pos < uriComponent.length; pos++) {
|
||
const code = uriComponent.charCodeAt(pos);
|
||
// unreserved characters: https://tools.ietf.org/html/rfc3986#section-2.3
|
||
if ((code >= 97 /* CharCode.a */ && code <= 122 /* CharCode.z */)
|
||
|| (code >= 65 /* CharCode.A */ && code <= 90 /* CharCode.Z */)
|
||
|| (code >= 48 /* CharCode.Digit0 */ && code <= 57 /* CharCode.Digit9 */)
|
||
|| code === 45 /* CharCode.Dash */
|
||
|| code === 46 /* CharCode.Period */
|
||
|| code === 95 /* CharCode.Underline */
|
||
|| code === 126 /* CharCode.Tilde */
|
||
|| (isPath && code === 47 /* CharCode.Slash */)
|
||
|| (isAuthority && code === 91 /* CharCode.OpenSquareBracket */)
|
||
|| (isAuthority && code === 93 /* CharCode.CloseSquareBracket */)
|
||
|| (isAuthority && code === 58 /* CharCode.Colon */)) {
|
||
// check if we are delaying native encode
|
||
if (nativeEncodePos !== -1) {
|
||
res += encodeURIComponent(uriComponent.substring(nativeEncodePos, pos));
|
||
nativeEncodePos = -1;
|
||
}
|
||
// check if we write into a new string (by default we try to return the param)
|
||
if (res !== undefined) {
|
||
res += uriComponent.charAt(pos);
|
||
}
|
||
}
|
||
else {
|
||
// encoding needed, we need to allocate a new string
|
||
if (res === undefined) {
|
||
res = uriComponent.substr(0, pos);
|
||
}
|
||
// check with default table first
|
||
const escaped = encodeTable[code];
|
||
if (escaped !== undefined) {
|
||
// check if we are delaying native encode
|
||
if (nativeEncodePos !== -1) {
|
||
res += encodeURIComponent(uriComponent.substring(nativeEncodePos, pos));
|
||
nativeEncodePos = -1;
|
||
}
|
||
// append escaped variant to result
|
||
res += escaped;
|
||
}
|
||
else if (nativeEncodePos === -1) {
|
||
// use native encode only when needed
|
||
nativeEncodePos = pos;
|
||
}
|
||
}
|
||
}
|
||
if (nativeEncodePos !== -1) {
|
||
res += encodeURIComponent(uriComponent.substring(nativeEncodePos));
|
||
}
|
||
return res !== undefined ? res : uriComponent;
|
||
}
|
||
function encodeURIComponentMinimal(path) {
|
||
let res = undefined;
|
||
for (let pos = 0; pos < path.length; pos++) {
|
||
const code = path.charCodeAt(pos);
|
||
if (code === 35 /* CharCode.Hash */ || code === 63 /* CharCode.QuestionMark */) {
|
||
if (res === undefined) {
|
||
res = path.substr(0, pos);
|
||
}
|
||
res += encodeTable[code];
|
||
}
|
||
else {
|
||
if (res !== undefined) {
|
||
res += path[pos];
|
||
}
|
||
}
|
||
}
|
||
return res !== undefined ? res : path;
|
||
}
|
||
/**
|
||
* Compute `fsPath` for the given uri
|
||
*/
|
||
function uriToFsPath(uri, keepDriveLetterCasing) {
|
||
let value;
|
||
if (uri.authority && uri.path.length > 1 && uri.scheme === 'file') {
|
||
// unc path: file://shares/c$/far/boo
|
||
value = `//${uri.authority}${uri.path}`;
|
||
}
|
||
else if (uri.path.charCodeAt(0) === 47 /* CharCode.Slash */
|
||
&& (uri.path.charCodeAt(1) >= 65 /* CharCode.A */ && uri.path.charCodeAt(1) <= 90 /* CharCode.Z */ || uri.path.charCodeAt(1) >= 97 /* CharCode.a */ && uri.path.charCodeAt(1) <= 122 /* CharCode.z */)
|
||
&& uri.path.charCodeAt(2) === 58 /* CharCode.Colon */) {
|
||
if (!keepDriveLetterCasing) {
|
||
// windows drive letter: file:///c:/far/boo
|
||
value = uri.path[1].toLowerCase() + uri.path.substr(2);
|
||
}
|
||
else {
|
||
value = uri.path.substr(1);
|
||
}
|
||
}
|
||
else {
|
||
// other path
|
||
value = uri.path;
|
||
}
|
||
if (platform_1.isWindows) {
|
||
value = value.replace(/\//g, '\\');
|
||
}
|
||
return value;
|
||
}
|
||
/**
|
||
* Create the external version of a uri
|
||
*/
|
||
function _asFormatted(uri, skipEncoding) {
|
||
const encoder = !skipEncoding
|
||
? encodeURIComponentFast
|
||
: encodeURIComponentMinimal;
|
||
let res = '';
|
||
let { scheme, authority, path, query, fragment } = uri;
|
||
if (scheme) {
|
||
res += scheme;
|
||
res += ':';
|
||
}
|
||
if (authority || scheme === 'file') {
|
||
res += _slash;
|
||
res += _slash;
|
||
}
|
||
if (authority) {
|
||
let idx = authority.indexOf('@');
|
||
if (idx !== -1) {
|
||
// <user>@<auth>
|
||
const userinfo = authority.substr(0, idx);
|
||
authority = authority.substr(idx + 1);
|
||
idx = userinfo.lastIndexOf(':');
|
||
if (idx === -1) {
|
||
res += encoder(userinfo, false, false);
|
||
}
|
||
else {
|
||
// <user>:<pass>@<auth>
|
||
res += encoder(userinfo.substr(0, idx), false, false);
|
||
res += ':';
|
||
res += encoder(userinfo.substr(idx + 1), false, true);
|
||
}
|
||
res += '@';
|
||
}
|
||
authority = authority.toLowerCase();
|
||
idx = authority.lastIndexOf(':');
|
||
if (idx === -1) {
|
||
res += encoder(authority, false, true);
|
||
}
|
||
else {
|
||
// <auth>:<port>
|
||
res += encoder(authority.substr(0, idx), false, true);
|
||
res += authority.substr(idx);
|
||
}
|
||
}
|
||
if (path) {
|
||
// lower-case windows drive letters in /C:/fff or C:/fff
|
||
if (path.length >= 3 && path.charCodeAt(0) === 47 /* CharCode.Slash */ && path.charCodeAt(2) === 58 /* CharCode.Colon */) {
|
||
const code = path.charCodeAt(1);
|
||
if (code >= 65 /* CharCode.A */ && code <= 90 /* CharCode.Z */) {
|
||
path = `/${String.fromCharCode(code + 32)}:${path.substr(3)}`; // "/c:".length === 3
|
||
}
|
||
}
|
||
else if (path.length >= 2 && path.charCodeAt(1) === 58 /* CharCode.Colon */) {
|
||
const code = path.charCodeAt(0);
|
||
if (code >= 65 /* CharCode.A */ && code <= 90 /* CharCode.Z */) {
|
||
path = `${String.fromCharCode(code + 32)}:${path.substr(2)}`; // "/c:".length === 3
|
||
}
|
||
}
|
||
// encode the rest of the path
|
||
res += encoder(path, true, false);
|
||
}
|
||
if (query) {
|
||
res += '?';
|
||
res += encoder(query, false, false);
|
||
}
|
||
if (fragment) {
|
||
res += '#';
|
||
res += !skipEncoding ? encodeURIComponentFast(fragment, false, false) : fragment;
|
||
}
|
||
return res;
|
||
}
|
||
// --- decode
|
||
function decodeURIComponentGraceful(str) {
|
||
try {
|
||
return decodeURIComponent(str);
|
||
}
|
||
catch {
|
||
if (str.length > 3) {
|
||
return str.substr(0, 3) + decodeURIComponentGraceful(str.substr(3));
|
||
}
|
||
else {
|
||
return str;
|
||
}
|
||
}
|
||
}
|
||
const _rEncodedAsHex = /(%[0-9A-Za-z][0-9A-Za-z])+/g;
|
||
function percentDecode(str) {
|
||
if (!str.match(_rEncodedAsHex)) {
|
||
return str;
|
||
}
|
||
return str.replace(_rEncodedAsHex, (match) => decodeURIComponentGraceful(match));
|
||
}
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[38/*vs/base/common/network*/], __M([0/*require*/,1/*exports*/,3/*vs/base/common/errors*/,11/*vs/base/common/platform*/,6/*vs/base/common/strings*/,14/*vs/base/common/uri*/,37/*vs/base/common/path*/]), function (require, exports, errors, platform, strings_1, uri_1, paths) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.COI = exports.FileAccess = exports.VSCODE_AUTHORITY = exports.RemoteAuthorities = exports.connectionTokenQueryName = exports.Schemas = void 0;
|
||
exports.matchesScheme = matchesScheme;
|
||
exports.matchesSomeScheme = matchesSomeScheme;
|
||
var Schemas;
|
||
(function (Schemas) {
|
||
/**
|
||
* A schema that is used for models that exist in memory
|
||
* only and that have no correspondence on a server or such.
|
||
*/
|
||
Schemas.inMemory = 'inmemory';
|
||
/**
|
||
* A schema that is used for setting files
|
||
*/
|
||
Schemas.vscode = 'vscode';
|
||
/**
|
||
* A schema that is used for internal private files
|
||
*/
|
||
Schemas.internal = 'private';
|
||
/**
|
||
* A walk-through document.
|
||
*/
|
||
Schemas.walkThrough = 'walkThrough';
|
||
/**
|
||
* An embedded code snippet.
|
||
*/
|
||
Schemas.walkThroughSnippet = 'walkThroughSnippet';
|
||
Schemas.http = 'http';
|
||
Schemas.https = 'https';
|
||
Schemas.file = 'file';
|
||
Schemas.mailto = 'mailto';
|
||
Schemas.untitled = 'untitled';
|
||
Schemas.data = 'data';
|
||
Schemas.command = 'command';
|
||
Schemas.vscodeRemote = 'vscode-remote';
|
||
Schemas.vscodeRemoteResource = 'vscode-remote-resource';
|
||
Schemas.vscodeManagedRemoteResource = 'vscode-managed-remote-resource';
|
||
Schemas.vscodeUserData = 'vscode-userdata';
|
||
Schemas.vscodeCustomEditor = 'vscode-custom-editor';
|
||
Schemas.vscodeNotebookCell = 'vscode-notebook-cell';
|
||
Schemas.vscodeNotebookCellMetadata = 'vscode-notebook-cell-metadata';
|
||
Schemas.vscodeNotebookCellMetadataDiff = 'vscode-notebook-cell-metadata-diff';
|
||
Schemas.vscodeNotebookCellOutput = 'vscode-notebook-cell-output';
|
||
Schemas.vscodeNotebookCellOutputDiff = 'vscode-notebook-cell-output-diff';
|
||
Schemas.vscodeNotebookMetadata = 'vscode-notebook-metadata';
|
||
Schemas.vscodeInteractiveInput = 'vscode-interactive-input';
|
||
Schemas.vscodeSettings = 'vscode-settings';
|
||
Schemas.vscodeWorkspaceTrust = 'vscode-workspace-trust';
|
||
Schemas.vscodeTerminal = 'vscode-terminal';
|
||
/** Scheme used for code blocks in chat. */
|
||
Schemas.vscodeChatCodeBlock = 'vscode-chat-code-block';
|
||
/** Scheme used for LHS of code compare (aka diff) blocks in chat. */
|
||
Schemas.vscodeChatCodeCompareBlock = 'vscode-chat-code-compare-block';
|
||
/** Scheme used for the chat input editor. */
|
||
Schemas.vscodeChatSesssion = 'vscode-chat-editor';
|
||
/**
|
||
* Scheme used internally for webviews that aren't linked to a resource (i.e. not custom editors)
|
||
*/
|
||
Schemas.webviewPanel = 'webview-panel';
|
||
/**
|
||
* Scheme used for loading the wrapper html and script in webviews.
|
||
*/
|
||
Schemas.vscodeWebview = 'vscode-webview';
|
||
/**
|
||
* Scheme used for extension pages
|
||
*/
|
||
Schemas.extension = 'extension';
|
||
/**
|
||
* Scheme used as a replacement of `file` scheme to load
|
||
* files with our custom protocol handler (desktop only).
|
||
*/
|
||
Schemas.vscodeFileResource = 'vscode-file';
|
||
/**
|
||
* Scheme used for temporary resources
|
||
*/
|
||
Schemas.tmp = 'tmp';
|
||
/**
|
||
* Scheme used vs live share
|
||
*/
|
||
Schemas.vsls = 'vsls';
|
||
/**
|
||
* Scheme used for the Source Control commit input's text document
|
||
*/
|
||
Schemas.vscodeSourceControl = 'vscode-scm';
|
||
/**
|
||
* Scheme used for input box for creating comments.
|
||
*/
|
||
Schemas.commentsInput = 'comment';
|
||
/**
|
||
* Scheme used for special rendering of settings in the release notes
|
||
*/
|
||
Schemas.codeSetting = 'code-setting';
|
||
/**
|
||
* Scheme used for output panel resources
|
||
*/
|
||
Schemas.outputChannel = 'output';
|
||
})(Schemas || (exports.Schemas = Schemas = {}));
|
||
function matchesScheme(target, scheme) {
|
||
if (uri_1.URI.isUri(target)) {
|
||
return (0, strings_1.equalsIgnoreCase)(target.scheme, scheme);
|
||
}
|
||
else {
|
||
return (0, strings_1.startsWithIgnoreCase)(target, scheme + ':');
|
||
}
|
||
}
|
||
function matchesSomeScheme(target, ...schemes) {
|
||
return schemes.some(scheme => matchesScheme(target, scheme));
|
||
}
|
||
exports.connectionTokenQueryName = 'tkn';
|
||
class RemoteAuthoritiesImpl {
|
||
constructor() {
|
||
this._hosts = Object.create(null);
|
||
this._ports = Object.create(null);
|
||
this._connectionTokens = Object.create(null);
|
||
this._preferredWebSchema = 'http';
|
||
this._delegate = null;
|
||
this._serverRootPath = '/';
|
||
}
|
||
setPreferredWebSchema(schema) {
|
||
this._preferredWebSchema = schema;
|
||
}
|
||
get _remoteResourcesPath() {
|
||
return paths.posix.join(this._serverRootPath, Schemas.vscodeRemoteResource);
|
||
}
|
||
rewrite(uri) {
|
||
if (this._delegate) {
|
||
try {
|
||
return this._delegate(uri);
|
||
}
|
||
catch (err) {
|
||
errors.onUnexpectedError(err);
|
||
return uri;
|
||
}
|
||
}
|
||
const authority = uri.authority;
|
||
let host = this._hosts[authority];
|
||
if (host && host.indexOf(':') !== -1 && host.indexOf('[') === -1) {
|
||
host = `[${host}]`;
|
||
}
|
||
const port = this._ports[authority];
|
||
const connectionToken = this._connectionTokens[authority];
|
||
let query = `path=${encodeURIComponent(uri.path)}`;
|
||
if (typeof connectionToken === 'string') {
|
||
query += `&${exports.connectionTokenQueryName}=${encodeURIComponent(connectionToken)}`;
|
||
}
|
||
return uri_1.URI.from({
|
||
scheme: platform.isWeb ? this._preferredWebSchema : Schemas.vscodeRemoteResource,
|
||
authority: `${host}:${port}`,
|
||
path: this._remoteResourcesPath,
|
||
query
|
||
});
|
||
}
|
||
}
|
||
exports.RemoteAuthorities = new RemoteAuthoritiesImpl();
|
||
exports.VSCODE_AUTHORITY = 'vscode-app';
|
||
class FileAccessImpl {
|
||
static { this.FALLBACK_AUTHORITY = exports.VSCODE_AUTHORITY; }
|
||
/**
|
||
* Returns a URI to use in contexts where the browser is responsible
|
||
* for loading (e.g. fetch()) or when used within the DOM.
|
||
*
|
||
* **Note:** use `dom.ts#asCSSUrl` whenever the URL is to be used in CSS context.
|
||
*/
|
||
asBrowserUri(resourcePath) {
|
||
// ESM-comment-begin
|
||
const uri = this.toUri(resourcePath, require);
|
||
// ESM-comment-end
|
||
// ESM-uncomment-begin
|
||
// const uri = this.toUri(resourcePath);
|
||
// ESM-uncomment-end
|
||
return this.uriToBrowserUri(uri);
|
||
}
|
||
/**
|
||
* Returns a URI to use in contexts where the browser is responsible
|
||
* for loading (e.g. fetch()) or when used within the DOM.
|
||
*
|
||
* **Note:** use `dom.ts#asCSSUrl` whenever the URL is to be used in CSS context.
|
||
*/
|
||
uriToBrowserUri(uri) {
|
||
// Handle remote URIs via `RemoteAuthorities`
|
||
if (uri.scheme === Schemas.vscodeRemote) {
|
||
return exports.RemoteAuthorities.rewrite(uri);
|
||
}
|
||
// Convert to `vscode-file` resource..
|
||
if (
|
||
// ...only ever for `file` resources
|
||
uri.scheme === Schemas.file &&
|
||
(
|
||
// ...and we run in native environments
|
||
platform.isNative ||
|
||
// ...or web worker extensions on desktop
|
||
(platform.webWorkerOrigin === `${Schemas.vscodeFileResource}://${FileAccessImpl.FALLBACK_AUTHORITY}`))) {
|
||
return uri.with({
|
||
scheme: Schemas.vscodeFileResource,
|
||
// We need to provide an authority here so that it can serve
|
||
// as origin for network and loading matters in chromium.
|
||
// If the URI is not coming with an authority already, we
|
||
// add our own
|
||
authority: uri.authority || FileAccessImpl.FALLBACK_AUTHORITY,
|
||
query: null,
|
||
fragment: null
|
||
});
|
||
}
|
||
return uri;
|
||
}
|
||
toUri(uriOrModule, moduleIdToUrl) {
|
||
if (uri_1.URI.isUri(uriOrModule)) {
|
||
return uriOrModule;
|
||
}
|
||
if (globalThis._VSCODE_FILE_ROOT) {
|
||
const rootUriOrPath = globalThis._VSCODE_FILE_ROOT;
|
||
// File URL (with scheme)
|
||
if (/^\w[\w\d+.-]*:\/\//.test(rootUriOrPath)) {
|
||
return uri_1.URI.joinPath(uri_1.URI.parse(rootUriOrPath, true), uriOrModule);
|
||
}
|
||
// File Path (no scheme)
|
||
const modulePath = paths.join(rootUriOrPath, uriOrModule);
|
||
return uri_1.URI.file(modulePath);
|
||
}
|
||
return uri_1.URI.parse(moduleIdToUrl.toUrl(uriOrModule));
|
||
}
|
||
}
|
||
exports.FileAccess = new FileAccessImpl();
|
||
var COI;
|
||
(function (COI) {
|
||
const coiHeaders = new Map([
|
||
['1', { 'Cross-Origin-Opener-Policy': 'same-origin' }],
|
||
['2', { 'Cross-Origin-Embedder-Policy': 'require-corp' }],
|
||
['3', { 'Cross-Origin-Opener-Policy': 'same-origin', 'Cross-Origin-Embedder-Policy': 'require-corp' }],
|
||
]);
|
||
COI.CoopAndCoep = Object.freeze(coiHeaders.get('3'));
|
||
const coiSearchParamName = 'vscode-coi';
|
||
/**
|
||
* Extract desired headers from `vscode-coi` invocation
|
||
*/
|
||
function getHeadersFromQuery(url) {
|
||
let params;
|
||
if (typeof url === 'string') {
|
||
params = new URL(url).searchParams;
|
||
}
|
||
else if (url instanceof URL) {
|
||
params = url.searchParams;
|
||
}
|
||
else if (uri_1.URI.isUri(url)) {
|
||
params = new URL(url.toString(true)).searchParams;
|
||
}
|
||
const value = params?.get(coiSearchParamName);
|
||
if (!value) {
|
||
return undefined;
|
||
}
|
||
return coiHeaders.get(value);
|
||
}
|
||
COI.getHeadersFromQuery = getHeadersFromQuery;
|
||
/**
|
||
* Add the `vscode-coi` query attribute based on wanting `COOP` and `COEP`. Will be a noop when `crossOriginIsolated`
|
||
* isn't enabled the current context
|
||
*/
|
||
function addSearchParam(urlOrSearch, coop, coep) {
|
||
if (!globalThis.crossOriginIsolated) {
|
||
// depends on the current context being COI
|
||
return;
|
||
}
|
||
const value = coop && coep ? '3' : coep ? '2' : '1';
|
||
if (urlOrSearch instanceof URLSearchParams) {
|
||
urlOrSearch.set(coiSearchParamName, value);
|
||
}
|
||
else {
|
||
urlOrSearch[coiSearchParamName] = value;
|
||
}
|
||
}
|
||
COI.addSearchParam = addSearchParam;
|
||
})(COI || (exports.COI = COI = {}));
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[76/*vs/base/common/worker/simpleWorker*/], __M([0/*require*/,1/*exports*/,3/*vs/base/common/errors*/,9/*vs/base/common/event*/,8/*vs/base/common/lifecycle*/,38/*vs/base/common/network*/,11/*vs/base/common/platform*/,6/*vs/base/common/strings*/]), function (require, exports, errors_1, event_1, lifecycle_1, network_1, platform_1, strings) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.SimpleWorkerServer = exports.SimpleWorkerClient = void 0;
|
||
exports.logOnceWebWorkerWarning = logOnceWebWorkerWarning;
|
||
exports.create = create;
|
||
// ESM-comment-begin
|
||
const isESM = false;
|
||
// ESM-comment-end
|
||
// ESM-uncomment-begin
|
||
// const isESM = true;
|
||
// ESM-uncomment-end
|
||
const DEFAULT_CHANNEL = 'default';
|
||
const INITIALIZE = '$initialize';
|
||
let webWorkerWarningLogged = false;
|
||
function logOnceWebWorkerWarning(err) {
|
||
if (!platform_1.isWeb) {
|
||
// running tests
|
||
return;
|
||
}
|
||
if (!webWorkerWarningLogged) {
|
||
webWorkerWarningLogged = true;
|
||
console.warn('Could not create web worker(s). Falling back to loading web worker code in main thread, which might cause UI freezes. Please see https://github.com/microsoft/monaco-editor#faq');
|
||
}
|
||
console.warn(err.message);
|
||
}
|
||
class RequestMessage {
|
||
constructor(vsWorker, req, channel, method, args) {
|
||
this.vsWorker = vsWorker;
|
||
this.req = req;
|
||
this.channel = channel;
|
||
this.method = method;
|
||
this.args = args;
|
||
this.type = 0 /* MessageType.Request */;
|
||
}
|
||
}
|
||
class ReplyMessage {
|
||
constructor(vsWorker, seq, res, err) {
|
||
this.vsWorker = vsWorker;
|
||
this.seq = seq;
|
||
this.res = res;
|
||
this.err = err;
|
||
this.type = 1 /* MessageType.Reply */;
|
||
}
|
||
}
|
||
class SubscribeEventMessage {
|
||
constructor(vsWorker, req, channel, eventName, arg) {
|
||
this.vsWorker = vsWorker;
|
||
this.req = req;
|
||
this.channel = channel;
|
||
this.eventName = eventName;
|
||
this.arg = arg;
|
||
this.type = 2 /* MessageType.SubscribeEvent */;
|
||
}
|
||
}
|
||
class EventMessage {
|
||
constructor(vsWorker, req, event) {
|
||
this.vsWorker = vsWorker;
|
||
this.req = req;
|
||
this.event = event;
|
||
this.type = 3 /* MessageType.Event */;
|
||
}
|
||
}
|
||
class UnsubscribeEventMessage {
|
||
constructor(vsWorker, req) {
|
||
this.vsWorker = vsWorker;
|
||
this.req = req;
|
||
this.type = 4 /* MessageType.UnsubscribeEvent */;
|
||
}
|
||
}
|
||
class SimpleWorkerProtocol {
|
||
constructor(handler) {
|
||
this._workerId = -1;
|
||
this._handler = handler;
|
||
this._lastSentReq = 0;
|
||
this._pendingReplies = Object.create(null);
|
||
this._pendingEmitters = new Map();
|
||
this._pendingEvents = new Map();
|
||
}
|
||
setWorkerId(workerId) {
|
||
this._workerId = workerId;
|
||
}
|
||
sendMessage(channel, method, args) {
|
||
const req = String(++this._lastSentReq);
|
||
return new Promise((resolve, reject) => {
|
||
this._pendingReplies[req] = {
|
||
resolve: resolve,
|
||
reject: reject
|
||
};
|
||
this._send(new RequestMessage(this._workerId, req, channel, method, args));
|
||
});
|
||
}
|
||
listen(channel, eventName, arg) {
|
||
let req = null;
|
||
const emitter = new event_1.Emitter({
|
||
onWillAddFirstListener: () => {
|
||
req = String(++this._lastSentReq);
|
||
this._pendingEmitters.set(req, emitter);
|
||
this._send(new SubscribeEventMessage(this._workerId, req, channel, eventName, arg));
|
||
},
|
||
onDidRemoveLastListener: () => {
|
||
this._pendingEmitters.delete(req);
|
||
this._send(new UnsubscribeEventMessage(this._workerId, req));
|
||
req = null;
|
||
}
|
||
});
|
||
return emitter.event;
|
||
}
|
||
handleMessage(message) {
|
||
if (!message || !message.vsWorker) {
|
||
return;
|
||
}
|
||
if (this._workerId !== -1 && message.vsWorker !== this._workerId) {
|
||
return;
|
||
}
|
||
this._handleMessage(message);
|
||
}
|
||
createProxyToRemoteChannel(channel, sendMessageBarrier) {
|
||
const handler = {
|
||
get: (target, name) => {
|
||
if (typeof name === 'string' && !target[name]) {
|
||
if (propertyIsDynamicEvent(name)) { // onDynamic...
|
||
target[name] = (arg) => {
|
||
return this.listen(channel, name, arg);
|
||
};
|
||
}
|
||
else if (propertyIsEvent(name)) { // on...
|
||
target[name] = this.listen(channel, name, undefined);
|
||
}
|
||
else if (name.charCodeAt(0) === 36 /* CharCode.DollarSign */) { // $...
|
||
target[name] = async (...myArgs) => {
|
||
await sendMessageBarrier?.();
|
||
return this.sendMessage(channel, name, myArgs);
|
||
};
|
||
}
|
||
}
|
||
return target[name];
|
||
}
|
||
};
|
||
return new Proxy(Object.create(null), handler);
|
||
}
|
||
_handleMessage(msg) {
|
||
switch (msg.type) {
|
||
case 1 /* MessageType.Reply */:
|
||
return this._handleReplyMessage(msg);
|
||
case 0 /* MessageType.Request */:
|
||
return this._handleRequestMessage(msg);
|
||
case 2 /* MessageType.SubscribeEvent */:
|
||
return this._handleSubscribeEventMessage(msg);
|
||
case 3 /* MessageType.Event */:
|
||
return this._handleEventMessage(msg);
|
||
case 4 /* MessageType.UnsubscribeEvent */:
|
||
return this._handleUnsubscribeEventMessage(msg);
|
||
}
|
||
}
|
||
_handleReplyMessage(replyMessage) {
|
||
if (!this._pendingReplies[replyMessage.seq]) {
|
||
console.warn('Got reply to unknown seq');
|
||
return;
|
||
}
|
||
const reply = this._pendingReplies[replyMessage.seq];
|
||
delete this._pendingReplies[replyMessage.seq];
|
||
if (replyMessage.err) {
|
||
let err = replyMessage.err;
|
||
if (replyMessage.err.$isError) {
|
||
err = new Error();
|
||
err.name = replyMessage.err.name;
|
||
err.message = replyMessage.err.message;
|
||
err.stack = replyMessage.err.stack;
|
||
}
|
||
reply.reject(err);
|
||
return;
|
||
}
|
||
reply.resolve(replyMessage.res);
|
||
}
|
||
_handleRequestMessage(requestMessage) {
|
||
const req = requestMessage.req;
|
||
const result = this._handler.handleMessage(requestMessage.channel, requestMessage.method, requestMessage.args);
|
||
result.then((r) => {
|
||
this._send(new ReplyMessage(this._workerId, req, r, undefined));
|
||
}, (e) => {
|
||
if (e.detail instanceof Error) {
|
||
// Loading errors have a detail property that points to the actual error
|
||
e.detail = (0, errors_1.transformErrorForSerialization)(e.detail);
|
||
}
|
||
this._send(new ReplyMessage(this._workerId, req, undefined, (0, errors_1.transformErrorForSerialization)(e)));
|
||
});
|
||
}
|
||
_handleSubscribeEventMessage(msg) {
|
||
const req = msg.req;
|
||
const disposable = this._handler.handleEvent(msg.channel, msg.eventName, msg.arg)((event) => {
|
||
this._send(new EventMessage(this._workerId, req, event));
|
||
});
|
||
this._pendingEvents.set(req, disposable);
|
||
}
|
||
_handleEventMessage(msg) {
|
||
if (!this._pendingEmitters.has(msg.req)) {
|
||
console.warn('Got event for unknown req');
|
||
return;
|
||
}
|
||
this._pendingEmitters.get(msg.req).fire(msg.event);
|
||
}
|
||
_handleUnsubscribeEventMessage(msg) {
|
||
if (!this._pendingEvents.has(msg.req)) {
|
||
console.warn('Got unsubscribe for unknown req');
|
||
return;
|
||
}
|
||
this._pendingEvents.get(msg.req).dispose();
|
||
this._pendingEvents.delete(msg.req);
|
||
}
|
||
_send(msg) {
|
||
const transfer = [];
|
||
if (msg.type === 0 /* MessageType.Request */) {
|
||
for (let i = 0; i < msg.args.length; i++) {
|
||
if (msg.args[i] instanceof ArrayBuffer) {
|
||
transfer.push(msg.args[i]);
|
||
}
|
||
}
|
||
}
|
||
else if (msg.type === 1 /* MessageType.Reply */) {
|
||
if (msg.res instanceof ArrayBuffer) {
|
||
transfer.push(msg.res);
|
||
}
|
||
}
|
||
this._handler.sendMessage(msg, transfer);
|
||
}
|
||
}
|
||
/**
|
||
* Main thread side
|
||
*/
|
||
class SimpleWorkerClient extends lifecycle_1.Disposable {
|
||
constructor(workerFactory, workerDescriptor) {
|
||
super();
|
||
this._localChannels = new Map();
|
||
this._worker = this._register(workerFactory.create({
|
||
amdModuleId: 'vs/base/common/worker/simpleWorker',
|
||
esmModuleLocation: workerDescriptor.esmModuleLocation,
|
||
label: workerDescriptor.label
|
||
}, (msg) => {
|
||
this._protocol.handleMessage(msg);
|
||
}, (err) => {
|
||
// in Firefox, web workers fail lazily :(
|
||
// we will reject the proxy
|
||
(0, errors_1.onUnexpectedError)(err);
|
||
}));
|
||
this._protocol = new SimpleWorkerProtocol({
|
||
sendMessage: (msg, transfer) => {
|
||
this._worker.postMessage(msg, transfer);
|
||
},
|
||
handleMessage: (channel, method, args) => {
|
||
return this._handleMessage(channel, method, args);
|
||
},
|
||
handleEvent: (channel, eventName, arg) => {
|
||
return this._handleEvent(channel, eventName, arg);
|
||
}
|
||
});
|
||
this._protocol.setWorkerId(this._worker.getId());
|
||
// Gather loader configuration
|
||
let loaderConfiguration = null;
|
||
const globalRequire = globalThis.require;
|
||
if (typeof globalRequire !== 'undefined' && typeof globalRequire.getConfig === 'function') {
|
||
// Get the configuration from the Monaco AMD Loader
|
||
loaderConfiguration = globalRequire.getConfig();
|
||
}
|
||
else if (typeof globalThis.requirejs !== 'undefined') {
|
||
// Get the configuration from requirejs
|
||
loaderConfiguration = globalThis.requirejs.s.contexts._.config;
|
||
}
|
||
// Send initialize message
|
||
this._onModuleLoaded = this._protocol.sendMessage(DEFAULT_CHANNEL, INITIALIZE, [
|
||
this._worker.getId(),
|
||
JSON.parse(JSON.stringify(loaderConfiguration)),
|
||
workerDescriptor.amdModuleId,
|
||
]);
|
||
this.proxy = this._protocol.createProxyToRemoteChannel(DEFAULT_CHANNEL, async () => { await this._onModuleLoaded; });
|
||
this._onModuleLoaded.catch((e) => {
|
||
this._onError('Worker failed to load ' + workerDescriptor.amdModuleId, e);
|
||
});
|
||
}
|
||
_handleMessage(channelName, method, args) {
|
||
const channel = this._localChannels.get(channelName);
|
||
if (!channel) {
|
||
return Promise.reject(new Error(`Missing channel ${channelName} on main thread`));
|
||
}
|
||
if (typeof channel[method] !== 'function') {
|
||
return Promise.reject(new Error(`Missing method ${method} on main thread channel ${channelName}`));
|
||
}
|
||
try {
|
||
return Promise.resolve(channel[method].apply(channel, args));
|
||
}
|
||
catch (e) {
|
||
return Promise.reject(e);
|
||
}
|
||
}
|
||
_handleEvent(channelName, eventName, arg) {
|
||
const channel = this._localChannels.get(channelName);
|
||
if (!channel) {
|
||
throw new Error(`Missing channel ${channelName} on main thread`);
|
||
}
|
||
if (propertyIsDynamicEvent(eventName)) {
|
||
const event = channel[eventName].call(channel, arg);
|
||
if (typeof event !== 'function') {
|
||
throw new Error(`Missing dynamic event ${eventName} on main thread channel ${channelName}.`);
|
||
}
|
||
return event;
|
||
}
|
||
if (propertyIsEvent(eventName)) {
|
||
const event = channel[eventName];
|
||
if (typeof event !== 'function') {
|
||
throw new Error(`Missing event ${eventName} on main thread channel ${channelName}.`);
|
||
}
|
||
return event;
|
||
}
|
||
throw new Error(`Malformed event name ${eventName}`);
|
||
}
|
||
setChannel(channel, handler) {
|
||
this._localChannels.set(channel, handler);
|
||
}
|
||
_onError(message, error) {
|
||
console.error(message);
|
||
console.info(error);
|
||
}
|
||
}
|
||
exports.SimpleWorkerClient = SimpleWorkerClient;
|
||
function propertyIsEvent(name) {
|
||
// Assume a property is an event if it has a form of "onSomething"
|
||
return name[0] === 'o' && name[1] === 'n' && strings.isUpperAsciiLetter(name.charCodeAt(2));
|
||
}
|
||
function propertyIsDynamicEvent(name) {
|
||
// Assume a property is a dynamic event (a method that returns an event) if it has a form of "onDynamicSomething"
|
||
return /^onDynamic/.test(name) && strings.isUpperAsciiLetter(name.charCodeAt(9));
|
||
}
|
||
/**
|
||
* Worker side
|
||
*/
|
||
class SimpleWorkerServer {
|
||
constructor(postMessage, requestHandlerFactory) {
|
||
this._localChannels = new Map();
|
||
this._remoteChannels = new Map();
|
||
this._requestHandlerFactory = requestHandlerFactory;
|
||
this._requestHandler = null;
|
||
this._protocol = new SimpleWorkerProtocol({
|
||
sendMessage: (msg, transfer) => {
|
||
postMessage(msg, transfer);
|
||
},
|
||
handleMessage: (channel, method, args) => this._handleMessage(channel, method, args),
|
||
handleEvent: (channel, eventName, arg) => this._handleEvent(channel, eventName, arg)
|
||
});
|
||
}
|
||
onmessage(msg) {
|
||
this._protocol.handleMessage(msg);
|
||
}
|
||
_handleMessage(channel, method, args) {
|
||
if (channel === DEFAULT_CHANNEL && method === INITIALIZE) {
|
||
return this.initialize(args[0], args[1], args[2]);
|
||
}
|
||
const requestHandler = (channel === DEFAULT_CHANNEL ? this._requestHandler : this._localChannels.get(channel));
|
||
if (!requestHandler) {
|
||
return Promise.reject(new Error(`Missing channel ${channel} on worker thread`));
|
||
}
|
||
if (typeof requestHandler[method] !== 'function') {
|
||
return Promise.reject(new Error(`Missing method ${method} on worker thread channel ${channel}`));
|
||
}
|
||
try {
|
||
return Promise.resolve(requestHandler[method].apply(requestHandler, args));
|
||
}
|
||
catch (e) {
|
||
return Promise.reject(e);
|
||
}
|
||
}
|
||
_handleEvent(channel, eventName, arg) {
|
||
const requestHandler = (channel === DEFAULT_CHANNEL ? this._requestHandler : this._localChannels.get(channel));
|
||
if (!requestHandler) {
|
||
throw new Error(`Missing channel ${channel} on worker thread`);
|
||
}
|
||
if (propertyIsDynamicEvent(eventName)) {
|
||
const event = requestHandler[eventName].call(requestHandler, arg);
|
||
if (typeof event !== 'function') {
|
||
throw new Error(`Missing dynamic event ${eventName} on request handler.`);
|
||
}
|
||
return event;
|
||
}
|
||
if (propertyIsEvent(eventName)) {
|
||
const event = requestHandler[eventName];
|
||
if (typeof event !== 'function') {
|
||
throw new Error(`Missing event ${eventName} on request handler.`);
|
||
}
|
||
return event;
|
||
}
|
||
throw new Error(`Malformed event name ${eventName}`);
|
||
}
|
||
getChannel(channel) {
|
||
if (!this._remoteChannels.has(channel)) {
|
||
const inst = this._protocol.createProxyToRemoteChannel(channel);
|
||
this._remoteChannels.set(channel, inst);
|
||
}
|
||
return this._remoteChannels.get(channel);
|
||
}
|
||
async initialize(workerId, loaderConfig, moduleId) {
|
||
this._protocol.setWorkerId(workerId);
|
||
if (this._requestHandlerFactory) {
|
||
// static request handler
|
||
this._requestHandler = this._requestHandlerFactory(this);
|
||
return;
|
||
}
|
||
if (loaderConfig) {
|
||
// Remove 'baseUrl', handling it is beyond scope for now
|
||
if (typeof loaderConfig.baseUrl !== 'undefined') {
|
||
delete loaderConfig['baseUrl'];
|
||
}
|
||
if (typeof loaderConfig.paths !== 'undefined') {
|
||
if (typeof loaderConfig.paths.vs !== 'undefined') {
|
||
delete loaderConfig.paths['vs'];
|
||
}
|
||
}
|
||
if (typeof loaderConfig.trustedTypesPolicy !== 'undefined') {
|
||
// don't use, it has been destroyed during serialize
|
||
delete loaderConfig['trustedTypesPolicy'];
|
||
}
|
||
// Since this is in a web worker, enable catching errors
|
||
loaderConfig.catchError = true;
|
||
globalThis.require.config(loaderConfig);
|
||
}
|
||
if (isESM) {
|
||
const url = network_1.FileAccess.asBrowserUri(`${moduleId}.js`).toString(true);
|
||
return new Promise((resolve_1, reject_1) => { require([`${url}`], resolve_1, reject_1); }).then((module) => {
|
||
this._requestHandler = module.create(this);
|
||
if (!this._requestHandler) {
|
||
throw new Error(`No RequestHandler!`);
|
||
}
|
||
});
|
||
}
|
||
return new Promise((resolve, reject) => {
|
||
// Use the global require to be sure to get the global config
|
||
// ESM-comment-begin
|
||
const req = (globalThis.require || require);
|
||
// ESM-comment-end
|
||
// ESM-uncomment-begin
|
||
// const req = globalThis.require;
|
||
// ESM-uncomment-end
|
||
req([moduleId], (module) => {
|
||
this._requestHandler = module.create(this);
|
||
if (!this._requestHandler) {
|
||
reject(new Error(`No RequestHandler!`));
|
||
return;
|
||
}
|
||
resolve();
|
||
}, reject);
|
||
});
|
||
}
|
||
}
|
||
exports.SimpleWorkerServer = SimpleWorkerServer;
|
||
/**
|
||
* Defines the worker entry point. Must be exported and named `create`.
|
||
* @skipMangle
|
||
*/
|
||
function create(postMessage) {
|
||
return new SimpleWorkerServer(postMessage, null);
|
||
}
|
||
});
|
||
|
||
define(__m[73/*vs/editor/common/languages*/], __M([0/*require*/,1/*exports*/,47/*vs/base/common/codicons*/,14/*vs/base/common/uri*/,2/*vs/editor/common/core/range*/,70/*vs/editor/common/tokenizationRegistry*/,36/*vs/nls*/]), function (require, exports, codicons_1, uri_1, range_1, tokenizationRegistry_1, nls_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.InlineEditTriggerKind = exports.TreeSitterTokenizationRegistry = exports.TokenizationRegistry = exports.LazyTokenizationSupport = exports.InlayHintKind = exports.Command = exports.NewSymbolNameTriggerKind = exports.NewSymbolNameTag = exports.FoldingRangeKind = exports.TextEdit = exports.SymbolKinds = exports.symbolKindNames = exports.DocumentHighlightKind = exports.SignatureHelpTriggerKind = exports.DocumentPasteTriggerKind = exports.SelectedSuggestionInfo = exports.InlineCompletionTriggerKind = exports.CompletionItemKinds = exports.HoverVerbosityAction = exports.EncodedTokenizationResult = exports.TokenizationResult = exports.Token = void 0;
|
||
exports.isLocationLink = isLocationLink;
|
||
exports.getAriaLabelForSymbol = getAriaLabelForSymbol;
|
||
class Token {
|
||
constructor(offset, type, language) {
|
||
this.offset = offset;
|
||
this.type = type;
|
||
this.language = language;
|
||
this._tokenBrand = undefined;
|
||
}
|
||
toString() {
|
||
return '(' + this.offset + ', ' + this.type + ')';
|
||
}
|
||
}
|
||
exports.Token = Token;
|
||
/**
|
||
* @internal
|
||
*/
|
||
class TokenizationResult {
|
||
constructor(tokens, endState) {
|
||
this.tokens = tokens;
|
||
this.endState = endState;
|
||
this._tokenizationResultBrand = undefined;
|
||
}
|
||
}
|
||
exports.TokenizationResult = TokenizationResult;
|
||
/**
|
||
* @internal
|
||
*/
|
||
class EncodedTokenizationResult {
|
||
constructor(
|
||
/**
|
||
* The tokens in binary format. Each token occupies two array indices. For token i:
|
||
* - at offset 2*i => startIndex
|
||
* - at offset 2*i + 1 => metadata
|
||
*
|
||
*/
|
||
tokens, endState) {
|
||
this.tokens = tokens;
|
||
this.endState = endState;
|
||
this._encodedTokenizationResultBrand = undefined;
|
||
}
|
||
}
|
||
exports.EncodedTokenizationResult = EncodedTokenizationResult;
|
||
var HoverVerbosityAction;
|
||
(function (HoverVerbosityAction) {
|
||
/**
|
||
* Increase the verbosity of the hover
|
||
*/
|
||
HoverVerbosityAction[HoverVerbosityAction["Increase"] = 0] = "Increase";
|
||
/**
|
||
* Decrease the verbosity of the hover
|
||
*/
|
||
HoverVerbosityAction[HoverVerbosityAction["Decrease"] = 1] = "Decrease";
|
||
})(HoverVerbosityAction || (exports.HoverVerbosityAction = HoverVerbosityAction = {}));
|
||
/**
|
||
* @internal
|
||
*/
|
||
var CompletionItemKinds;
|
||
(function (CompletionItemKinds) {
|
||
const byKind = new Map();
|
||
byKind.set(0 /* CompletionItemKind.Method */, codicons_1.Codicon.symbolMethod);
|
||
byKind.set(1 /* CompletionItemKind.Function */, codicons_1.Codicon.symbolFunction);
|
||
byKind.set(2 /* CompletionItemKind.Constructor */, codicons_1.Codicon.symbolConstructor);
|
||
byKind.set(3 /* CompletionItemKind.Field */, codicons_1.Codicon.symbolField);
|
||
byKind.set(4 /* CompletionItemKind.Variable */, codicons_1.Codicon.symbolVariable);
|
||
byKind.set(5 /* CompletionItemKind.Class */, codicons_1.Codicon.symbolClass);
|
||
byKind.set(6 /* CompletionItemKind.Struct */, codicons_1.Codicon.symbolStruct);
|
||
byKind.set(7 /* CompletionItemKind.Interface */, codicons_1.Codicon.symbolInterface);
|
||
byKind.set(8 /* CompletionItemKind.Module */, codicons_1.Codicon.symbolModule);
|
||
byKind.set(9 /* CompletionItemKind.Property */, codicons_1.Codicon.symbolProperty);
|
||
byKind.set(10 /* CompletionItemKind.Event */, codicons_1.Codicon.symbolEvent);
|
||
byKind.set(11 /* CompletionItemKind.Operator */, codicons_1.Codicon.symbolOperator);
|
||
byKind.set(12 /* CompletionItemKind.Unit */, codicons_1.Codicon.symbolUnit);
|
||
byKind.set(13 /* CompletionItemKind.Value */, codicons_1.Codicon.symbolValue);
|
||
byKind.set(15 /* CompletionItemKind.Enum */, codicons_1.Codicon.symbolEnum);
|
||
byKind.set(14 /* CompletionItemKind.Constant */, codicons_1.Codicon.symbolConstant);
|
||
byKind.set(15 /* CompletionItemKind.Enum */, codicons_1.Codicon.symbolEnum);
|
||
byKind.set(16 /* CompletionItemKind.EnumMember */, codicons_1.Codicon.symbolEnumMember);
|
||
byKind.set(17 /* CompletionItemKind.Keyword */, codicons_1.Codicon.symbolKeyword);
|
||
byKind.set(27 /* CompletionItemKind.Snippet */, codicons_1.Codicon.symbolSnippet);
|
||
byKind.set(18 /* CompletionItemKind.Text */, codicons_1.Codicon.symbolText);
|
||
byKind.set(19 /* CompletionItemKind.Color */, codicons_1.Codicon.symbolColor);
|
||
byKind.set(20 /* CompletionItemKind.File */, codicons_1.Codicon.symbolFile);
|
||
byKind.set(21 /* CompletionItemKind.Reference */, codicons_1.Codicon.symbolReference);
|
||
byKind.set(22 /* CompletionItemKind.Customcolor */, codicons_1.Codicon.symbolCustomColor);
|
||
byKind.set(23 /* CompletionItemKind.Folder */, codicons_1.Codicon.symbolFolder);
|
||
byKind.set(24 /* CompletionItemKind.TypeParameter */, codicons_1.Codicon.symbolTypeParameter);
|
||
byKind.set(25 /* CompletionItemKind.User */, codicons_1.Codicon.account);
|
||
byKind.set(26 /* CompletionItemKind.Issue */, codicons_1.Codicon.issues);
|
||
/**
|
||
* @internal
|
||
*/
|
||
function toIcon(kind) {
|
||
let codicon = byKind.get(kind);
|
||
if (!codicon) {
|
||
console.info('No codicon found for CompletionItemKind ' + kind);
|
||
codicon = codicons_1.Codicon.symbolProperty;
|
||
}
|
||
return codicon;
|
||
}
|
||
CompletionItemKinds.toIcon = toIcon;
|
||
const data = new Map();
|
||
data.set('method', 0 /* CompletionItemKind.Method */);
|
||
data.set('function', 1 /* CompletionItemKind.Function */);
|
||
data.set('constructor', 2 /* CompletionItemKind.Constructor */);
|
||
data.set('field', 3 /* CompletionItemKind.Field */);
|
||
data.set('variable', 4 /* CompletionItemKind.Variable */);
|
||
data.set('class', 5 /* CompletionItemKind.Class */);
|
||
data.set('struct', 6 /* CompletionItemKind.Struct */);
|
||
data.set('interface', 7 /* CompletionItemKind.Interface */);
|
||
data.set('module', 8 /* CompletionItemKind.Module */);
|
||
data.set('property', 9 /* CompletionItemKind.Property */);
|
||
data.set('event', 10 /* CompletionItemKind.Event */);
|
||
data.set('operator', 11 /* CompletionItemKind.Operator */);
|
||
data.set('unit', 12 /* CompletionItemKind.Unit */);
|
||
data.set('value', 13 /* CompletionItemKind.Value */);
|
||
data.set('constant', 14 /* CompletionItemKind.Constant */);
|
||
data.set('enum', 15 /* CompletionItemKind.Enum */);
|
||
data.set('enum-member', 16 /* CompletionItemKind.EnumMember */);
|
||
data.set('enumMember', 16 /* CompletionItemKind.EnumMember */);
|
||
data.set('keyword', 17 /* CompletionItemKind.Keyword */);
|
||
data.set('snippet', 27 /* CompletionItemKind.Snippet */);
|
||
data.set('text', 18 /* CompletionItemKind.Text */);
|
||
data.set('color', 19 /* CompletionItemKind.Color */);
|
||
data.set('file', 20 /* CompletionItemKind.File */);
|
||
data.set('reference', 21 /* CompletionItemKind.Reference */);
|
||
data.set('customcolor', 22 /* CompletionItemKind.Customcolor */);
|
||
data.set('folder', 23 /* CompletionItemKind.Folder */);
|
||
data.set('type-parameter', 24 /* CompletionItemKind.TypeParameter */);
|
||
data.set('typeParameter', 24 /* CompletionItemKind.TypeParameter */);
|
||
data.set('account', 25 /* CompletionItemKind.User */);
|
||
data.set('issue', 26 /* CompletionItemKind.Issue */);
|
||
/**
|
||
* @internal
|
||
*/
|
||
function fromString(value, strict) {
|
||
let res = data.get(value);
|
||
if (typeof res === 'undefined' && !strict) {
|
||
res = 9 /* CompletionItemKind.Property */;
|
||
}
|
||
return res;
|
||
}
|
||
CompletionItemKinds.fromString = fromString;
|
||
})(CompletionItemKinds || (exports.CompletionItemKinds = CompletionItemKinds = {}));
|
||
/**
|
||
* How an {@link InlineCompletionsProvider inline completion provider} was triggered.
|
||
*/
|
||
var InlineCompletionTriggerKind;
|
||
(function (InlineCompletionTriggerKind) {
|
||
/**
|
||
* Completion was triggered automatically while editing.
|
||
* It is sufficient to return a single completion item in this case.
|
||
*/
|
||
InlineCompletionTriggerKind[InlineCompletionTriggerKind["Automatic"] = 0] = "Automatic";
|
||
/**
|
||
* Completion was triggered explicitly by a user gesture.
|
||
* Return multiple completion items to enable cycling through them.
|
||
*/
|
||
InlineCompletionTriggerKind[InlineCompletionTriggerKind["Explicit"] = 1] = "Explicit";
|
||
})(InlineCompletionTriggerKind || (exports.InlineCompletionTriggerKind = InlineCompletionTriggerKind = {}));
|
||
class SelectedSuggestionInfo {
|
||
constructor(range, text, completionKind, isSnippetText) {
|
||
this.range = range;
|
||
this.text = text;
|
||
this.completionKind = completionKind;
|
||
this.isSnippetText = isSnippetText;
|
||
}
|
||
equals(other) {
|
||
return range_1.Range.lift(this.range).equalsRange(other.range)
|
||
&& this.text === other.text
|
||
&& this.completionKind === other.completionKind
|
||
&& this.isSnippetText === other.isSnippetText;
|
||
}
|
||
}
|
||
exports.SelectedSuggestionInfo = SelectedSuggestionInfo;
|
||
/**
|
||
* @internal
|
||
*/
|
||
var DocumentPasteTriggerKind;
|
||
(function (DocumentPasteTriggerKind) {
|
||
DocumentPasteTriggerKind[DocumentPasteTriggerKind["Automatic"] = 0] = "Automatic";
|
||
DocumentPasteTriggerKind[DocumentPasteTriggerKind["PasteAs"] = 1] = "PasteAs";
|
||
})(DocumentPasteTriggerKind || (exports.DocumentPasteTriggerKind = DocumentPasteTriggerKind = {}));
|
||
var SignatureHelpTriggerKind;
|
||
(function (SignatureHelpTriggerKind) {
|
||
SignatureHelpTriggerKind[SignatureHelpTriggerKind["Invoke"] = 1] = "Invoke";
|
||
SignatureHelpTriggerKind[SignatureHelpTriggerKind["TriggerCharacter"] = 2] = "TriggerCharacter";
|
||
SignatureHelpTriggerKind[SignatureHelpTriggerKind["ContentChange"] = 3] = "ContentChange";
|
||
})(SignatureHelpTriggerKind || (exports.SignatureHelpTriggerKind = SignatureHelpTriggerKind = {}));
|
||
/**
|
||
* A document highlight kind.
|
||
*/
|
||
var DocumentHighlightKind;
|
||
(function (DocumentHighlightKind) {
|
||
/**
|
||
* A textual occurrence.
|
||
*/
|
||
DocumentHighlightKind[DocumentHighlightKind["Text"] = 0] = "Text";
|
||
/**
|
||
* Read-access of a symbol, like reading a variable.
|
||
*/
|
||
DocumentHighlightKind[DocumentHighlightKind["Read"] = 1] = "Read";
|
||
/**
|
||
* Write-access of a symbol, like writing to a variable.
|
||
*/
|
||
DocumentHighlightKind[DocumentHighlightKind["Write"] = 2] = "Write";
|
||
})(DocumentHighlightKind || (exports.DocumentHighlightKind = DocumentHighlightKind = {}));
|
||
/**
|
||
* @internal
|
||
*/
|
||
function isLocationLink(thing) {
|
||
return thing
|
||
&& uri_1.URI.isUri(thing.uri)
|
||
&& range_1.Range.isIRange(thing.range)
|
||
&& (range_1.Range.isIRange(thing.originSelectionRange) || range_1.Range.isIRange(thing.targetSelectionRange));
|
||
}
|
||
/**
|
||
* @internal
|
||
*/
|
||
exports.symbolKindNames = {
|
||
[17 /* SymbolKind.Array */]: (0, nls_1.localize)(669, "array"),
|
||
[16 /* SymbolKind.Boolean */]: (0, nls_1.localize)(670, "boolean"),
|
||
[4 /* SymbolKind.Class */]: (0, nls_1.localize)(671, "class"),
|
||
[13 /* SymbolKind.Constant */]: (0, nls_1.localize)(672, "constant"),
|
||
[8 /* SymbolKind.Constructor */]: (0, nls_1.localize)(673, "constructor"),
|
||
[9 /* SymbolKind.Enum */]: (0, nls_1.localize)(674, "enumeration"),
|
||
[21 /* SymbolKind.EnumMember */]: (0, nls_1.localize)(675, "enumeration member"),
|
||
[23 /* SymbolKind.Event */]: (0, nls_1.localize)(676, "event"),
|
||
[7 /* SymbolKind.Field */]: (0, nls_1.localize)(677, "field"),
|
||
[0 /* SymbolKind.File */]: (0, nls_1.localize)(678, "file"),
|
||
[11 /* SymbolKind.Function */]: (0, nls_1.localize)(679, "function"),
|
||
[10 /* SymbolKind.Interface */]: (0, nls_1.localize)(680, "interface"),
|
||
[19 /* SymbolKind.Key */]: (0, nls_1.localize)(681, "key"),
|
||
[5 /* SymbolKind.Method */]: (0, nls_1.localize)(682, "method"),
|
||
[1 /* SymbolKind.Module */]: (0, nls_1.localize)(683, "module"),
|
||
[2 /* SymbolKind.Namespace */]: (0, nls_1.localize)(684, "namespace"),
|
||
[20 /* SymbolKind.Null */]: (0, nls_1.localize)(685, "null"),
|
||
[15 /* SymbolKind.Number */]: (0, nls_1.localize)(686, "number"),
|
||
[18 /* SymbolKind.Object */]: (0, nls_1.localize)(687, "object"),
|
||
[24 /* SymbolKind.Operator */]: (0, nls_1.localize)(688, "operator"),
|
||
[3 /* SymbolKind.Package */]: (0, nls_1.localize)(689, "package"),
|
||
[6 /* SymbolKind.Property */]: (0, nls_1.localize)(690, "property"),
|
||
[14 /* SymbolKind.String */]: (0, nls_1.localize)(691, "string"),
|
||
[22 /* SymbolKind.Struct */]: (0, nls_1.localize)(692, "struct"),
|
||
[25 /* SymbolKind.TypeParameter */]: (0, nls_1.localize)(693, "type parameter"),
|
||
[12 /* SymbolKind.Variable */]: (0, nls_1.localize)(694, "variable"),
|
||
};
|
||
/**
|
||
* @internal
|
||
*/
|
||
function getAriaLabelForSymbol(symbolName, kind) {
|
||
return (0, nls_1.localize)(695, '{0} ({1})', symbolName, exports.symbolKindNames[kind]);
|
||
}
|
||
/**
|
||
* @internal
|
||
*/
|
||
var SymbolKinds;
|
||
(function (SymbolKinds) {
|
||
const byKind = new Map();
|
||
byKind.set(0 /* SymbolKind.File */, codicons_1.Codicon.symbolFile);
|
||
byKind.set(1 /* SymbolKind.Module */, codicons_1.Codicon.symbolModule);
|
||
byKind.set(2 /* SymbolKind.Namespace */, codicons_1.Codicon.symbolNamespace);
|
||
byKind.set(3 /* SymbolKind.Package */, codicons_1.Codicon.symbolPackage);
|
||
byKind.set(4 /* SymbolKind.Class */, codicons_1.Codicon.symbolClass);
|
||
byKind.set(5 /* SymbolKind.Method */, codicons_1.Codicon.symbolMethod);
|
||
byKind.set(6 /* SymbolKind.Property */, codicons_1.Codicon.symbolProperty);
|
||
byKind.set(7 /* SymbolKind.Field */, codicons_1.Codicon.symbolField);
|
||
byKind.set(8 /* SymbolKind.Constructor */, codicons_1.Codicon.symbolConstructor);
|
||
byKind.set(9 /* SymbolKind.Enum */, codicons_1.Codicon.symbolEnum);
|
||
byKind.set(10 /* SymbolKind.Interface */, codicons_1.Codicon.symbolInterface);
|
||
byKind.set(11 /* SymbolKind.Function */, codicons_1.Codicon.symbolFunction);
|
||
byKind.set(12 /* SymbolKind.Variable */, codicons_1.Codicon.symbolVariable);
|
||
byKind.set(13 /* SymbolKind.Constant */, codicons_1.Codicon.symbolConstant);
|
||
byKind.set(14 /* SymbolKind.String */, codicons_1.Codicon.symbolString);
|
||
byKind.set(15 /* SymbolKind.Number */, codicons_1.Codicon.symbolNumber);
|
||
byKind.set(16 /* SymbolKind.Boolean */, codicons_1.Codicon.symbolBoolean);
|
||
byKind.set(17 /* SymbolKind.Array */, codicons_1.Codicon.symbolArray);
|
||
byKind.set(18 /* SymbolKind.Object */, codicons_1.Codicon.symbolObject);
|
||
byKind.set(19 /* SymbolKind.Key */, codicons_1.Codicon.symbolKey);
|
||
byKind.set(20 /* SymbolKind.Null */, codicons_1.Codicon.symbolNull);
|
||
byKind.set(21 /* SymbolKind.EnumMember */, codicons_1.Codicon.symbolEnumMember);
|
||
byKind.set(22 /* SymbolKind.Struct */, codicons_1.Codicon.symbolStruct);
|
||
byKind.set(23 /* SymbolKind.Event */, codicons_1.Codicon.symbolEvent);
|
||
byKind.set(24 /* SymbolKind.Operator */, codicons_1.Codicon.symbolOperator);
|
||
byKind.set(25 /* SymbolKind.TypeParameter */, codicons_1.Codicon.symbolTypeParameter);
|
||
/**
|
||
* @internal
|
||
*/
|
||
function toIcon(kind) {
|
||
let icon = byKind.get(kind);
|
||
if (!icon) {
|
||
console.info('No codicon found for SymbolKind ' + kind);
|
||
icon = codicons_1.Codicon.symbolProperty;
|
||
}
|
||
return icon;
|
||
}
|
||
SymbolKinds.toIcon = toIcon;
|
||
})(SymbolKinds || (exports.SymbolKinds = SymbolKinds = {}));
|
||
/** @internal */
|
||
class TextEdit {
|
||
}
|
||
exports.TextEdit = TextEdit;
|
||
class FoldingRangeKind {
|
||
/**
|
||
* Kind for folding range representing a comment. The value of the kind is 'comment'.
|
||
*/
|
||
static { this.Comment = new FoldingRangeKind('comment'); }
|
||
/**
|
||
* Kind for folding range representing a import. The value of the kind is 'imports'.
|
||
*/
|
||
static { this.Imports = new FoldingRangeKind('imports'); }
|
||
/**
|
||
* Kind for folding range representing regions (for example marked by `#region`, `#endregion`).
|
||
* The value of the kind is 'region'.
|
||
*/
|
||
static { this.Region = new FoldingRangeKind('region'); }
|
||
/**
|
||
* Returns a {@link FoldingRangeKind} for the given value.
|
||
*
|
||
* @param value of the kind.
|
||
*/
|
||
static fromValue(value) {
|
||
switch (value) {
|
||
case 'comment': return FoldingRangeKind.Comment;
|
||
case 'imports': return FoldingRangeKind.Imports;
|
||
case 'region': return FoldingRangeKind.Region;
|
||
}
|
||
return new FoldingRangeKind(value);
|
||
}
|
||
/**
|
||
* Creates a new {@link FoldingRangeKind}.
|
||
*
|
||
* @param value of the kind.
|
||
*/
|
||
constructor(value) {
|
||
this.value = value;
|
||
}
|
||
}
|
||
exports.FoldingRangeKind = FoldingRangeKind;
|
||
var NewSymbolNameTag;
|
||
(function (NewSymbolNameTag) {
|
||
NewSymbolNameTag[NewSymbolNameTag["AIGenerated"] = 1] = "AIGenerated";
|
||
})(NewSymbolNameTag || (exports.NewSymbolNameTag = NewSymbolNameTag = {}));
|
||
var NewSymbolNameTriggerKind;
|
||
(function (NewSymbolNameTriggerKind) {
|
||
NewSymbolNameTriggerKind[NewSymbolNameTriggerKind["Invoke"] = 0] = "Invoke";
|
||
NewSymbolNameTriggerKind[NewSymbolNameTriggerKind["Automatic"] = 1] = "Automatic";
|
||
})(NewSymbolNameTriggerKind || (exports.NewSymbolNameTriggerKind = NewSymbolNameTriggerKind = {}));
|
||
/**
|
||
* @internal
|
||
*/
|
||
var Command;
|
||
(function (Command) {
|
||
/**
|
||
* @internal
|
||
*/
|
||
function is(obj) {
|
||
if (!obj || typeof obj !== 'object') {
|
||
return false;
|
||
}
|
||
return typeof obj.id === 'string' &&
|
||
typeof obj.title === 'string';
|
||
}
|
||
Command.is = is;
|
||
})(Command || (exports.Command = Command = {}));
|
||
var InlayHintKind;
|
||
(function (InlayHintKind) {
|
||
InlayHintKind[InlayHintKind["Type"] = 1] = "Type";
|
||
InlayHintKind[InlayHintKind["Parameter"] = 2] = "Parameter";
|
||
})(InlayHintKind || (exports.InlayHintKind = InlayHintKind = {}));
|
||
/**
|
||
* @internal
|
||
*/
|
||
class LazyTokenizationSupport {
|
||
constructor(createSupport) {
|
||
this.createSupport = createSupport;
|
||
this._tokenizationSupport = null;
|
||
}
|
||
dispose() {
|
||
if (this._tokenizationSupport) {
|
||
this._tokenizationSupport.then((support) => {
|
||
if (support) {
|
||
support.dispose();
|
||
}
|
||
});
|
||
}
|
||
}
|
||
get tokenizationSupport() {
|
||
if (!this._tokenizationSupport) {
|
||
this._tokenizationSupport = this.createSupport();
|
||
}
|
||
return this._tokenizationSupport;
|
||
}
|
||
}
|
||
exports.LazyTokenizationSupport = LazyTokenizationSupport;
|
||
/**
|
||
* @internal
|
||
*/
|
||
exports.TokenizationRegistry = new tokenizationRegistry_1.TokenizationRegistry();
|
||
/**
|
||
* @internal
|
||
*/
|
||
exports.TreeSitterTokenizationRegistry = new tokenizationRegistry_1.TokenizationRegistry();
|
||
var InlineEditTriggerKind;
|
||
(function (InlineEditTriggerKind) {
|
||
InlineEditTriggerKind[InlineEditTriggerKind["Invoke"] = 0] = "Invoke";
|
||
InlineEditTriggerKind[InlineEditTriggerKind["Automatic"] = 1] = "Automatic";
|
||
})(InlineEditTriggerKind || (exports.InlineEditTriggerKind = InlineEditTriggerKind = {}));
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[74/*vs/editor/common/services/editorBaseApi*/], __M([0/*require*/,1/*exports*/,23/*vs/base/common/cancellation*/,9/*vs/base/common/event*/,42/*vs/base/common/keyCodes*/,14/*vs/base/common/uri*/,4/*vs/editor/common/core/position*/,2/*vs/editor/common/core/range*/,48/*vs/editor/common/core/selection*/,73/*vs/editor/common/languages*/,69/*vs/editor/common/standalone/standaloneEnums*/]), function (require, exports, cancellation_1, event_1, keyCodes_1, uri_1, position_1, range_1, selection_1, languages_1, standaloneEnums) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.KeyMod = void 0;
|
||
exports.createMonacoBaseAPI = createMonacoBaseAPI;
|
||
class KeyMod {
|
||
static { this.CtrlCmd = 2048 /* ConstKeyMod.CtrlCmd */; }
|
||
static { this.Shift = 1024 /* ConstKeyMod.Shift */; }
|
||
static { this.Alt = 512 /* ConstKeyMod.Alt */; }
|
||
static { this.WinCtrl = 256 /* ConstKeyMod.WinCtrl */; }
|
||
static chord(firstPart, secondPart) {
|
||
return (0, keyCodes_1.KeyChord)(firstPart, secondPart);
|
||
}
|
||
}
|
||
exports.KeyMod = KeyMod;
|
||
function createMonacoBaseAPI() {
|
||
return {
|
||
editor: undefined, // undefined override expected here
|
||
languages: undefined, // undefined override expected here
|
||
CancellationTokenSource: cancellation_1.CancellationTokenSource,
|
||
Emitter: event_1.Emitter,
|
||
KeyCode: standaloneEnums.KeyCode,
|
||
KeyMod: KeyMod,
|
||
Position: position_1.Position,
|
||
Range: range_1.Range,
|
||
Selection: selection_1.Selection,
|
||
SelectionDirection: standaloneEnums.SelectionDirection,
|
||
MarkerSeverity: standaloneEnums.MarkerSeverity,
|
||
MarkerTag: standaloneEnums.MarkerTag,
|
||
Uri: uri_1.URI,
|
||
Token: languages_1.Token
|
||
};
|
||
}
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[75/*vs/editor/common/services/textModelSync/textModelSync.impl*/], __M([0/*require*/,1/*exports*/,71/*vs/base/common/async*/,8/*vs/base/common/lifecycle*/,14/*vs/base/common/uri*/,4/*vs/editor/common/core/position*/,2/*vs/editor/common/core/range*/,31/*vs/editor/common/core/wordHelper*/,64/*vs/editor/common/model/mirrorTextModel*/]), function (require, exports, async_1, lifecycle_1, uri_1, position_1, range_1, wordHelper_1, mirrorTextModel_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.MirrorModel = exports.WorkerTextModelSyncServer = exports.WorkerTextModelSyncClient = exports.STOP_SYNC_MODEL_DELTA_TIME_MS = void 0;
|
||
/**
|
||
* Stop syncing a model to the worker if it was not needed for 1 min.
|
||
*/
|
||
exports.STOP_SYNC_MODEL_DELTA_TIME_MS = 60 * 1000;
|
||
class WorkerTextModelSyncClient extends lifecycle_1.Disposable {
|
||
constructor(proxy, modelService, keepIdleModels = false) {
|
||
super();
|
||
this._syncedModels = Object.create(null);
|
||
this._syncedModelsLastUsedTime = Object.create(null);
|
||
this._proxy = proxy;
|
||
this._modelService = modelService;
|
||
if (!keepIdleModels) {
|
||
const timer = new async_1.IntervalTimer();
|
||
timer.cancelAndSet(() => this._checkStopModelSync(), Math.round(exports.STOP_SYNC_MODEL_DELTA_TIME_MS / 2));
|
||
this._register(timer);
|
||
}
|
||
}
|
||
dispose() {
|
||
for (const modelUrl in this._syncedModels) {
|
||
(0, lifecycle_1.dispose)(this._syncedModels[modelUrl]);
|
||
}
|
||
this._syncedModels = Object.create(null);
|
||
this._syncedModelsLastUsedTime = Object.create(null);
|
||
super.dispose();
|
||
}
|
||
ensureSyncedResources(resources, forceLargeModels = false) {
|
||
for (const resource of resources) {
|
||
const resourceStr = resource.toString();
|
||
if (!this._syncedModels[resourceStr]) {
|
||
this._beginModelSync(resource, forceLargeModels);
|
||
}
|
||
if (this._syncedModels[resourceStr]) {
|
||
this._syncedModelsLastUsedTime[resourceStr] = (new Date()).getTime();
|
||
}
|
||
}
|
||
}
|
||
_checkStopModelSync() {
|
||
const currentTime = (new Date()).getTime();
|
||
const toRemove = [];
|
||
for (const modelUrl in this._syncedModelsLastUsedTime) {
|
||
const elapsedTime = currentTime - this._syncedModelsLastUsedTime[modelUrl];
|
||
if (elapsedTime > exports.STOP_SYNC_MODEL_DELTA_TIME_MS) {
|
||
toRemove.push(modelUrl);
|
||
}
|
||
}
|
||
for (const e of toRemove) {
|
||
this._stopModelSync(e);
|
||
}
|
||
}
|
||
_beginModelSync(resource, forceLargeModels) {
|
||
const model = this._modelService.getModel(resource);
|
||
if (!model) {
|
||
return;
|
||
}
|
||
if (!forceLargeModels && model.isTooLargeForSyncing()) {
|
||
return;
|
||
}
|
||
const modelUrl = resource.toString();
|
||
this._proxy.$acceptNewModel({
|
||
url: model.uri.toString(),
|
||
lines: model.getLinesContent(),
|
||
EOL: model.getEOL(),
|
||
versionId: model.getVersionId()
|
||
});
|
||
const toDispose = new lifecycle_1.DisposableStore();
|
||
toDispose.add(model.onDidChangeContent((e) => {
|
||
this._proxy.$acceptModelChanged(modelUrl.toString(), e);
|
||
}));
|
||
toDispose.add(model.onWillDispose(() => {
|
||
this._stopModelSync(modelUrl);
|
||
}));
|
||
toDispose.add((0, lifecycle_1.toDisposable)(() => {
|
||
this._proxy.$acceptRemovedModel(modelUrl);
|
||
}));
|
||
this._syncedModels[modelUrl] = toDispose;
|
||
}
|
||
_stopModelSync(modelUrl) {
|
||
const toDispose = this._syncedModels[modelUrl];
|
||
delete this._syncedModels[modelUrl];
|
||
delete this._syncedModelsLastUsedTime[modelUrl];
|
||
(0, lifecycle_1.dispose)(toDispose);
|
||
}
|
||
}
|
||
exports.WorkerTextModelSyncClient = WorkerTextModelSyncClient;
|
||
class WorkerTextModelSyncServer {
|
||
constructor() {
|
||
this._models = Object.create(null);
|
||
}
|
||
getModel(uri) {
|
||
return this._models[uri];
|
||
}
|
||
getModels() {
|
||
const all = [];
|
||
Object.keys(this._models).forEach((key) => all.push(this._models[key]));
|
||
return all;
|
||
}
|
||
$acceptNewModel(data) {
|
||
this._models[data.url] = new MirrorModel(uri_1.URI.parse(data.url), data.lines, data.EOL, data.versionId);
|
||
}
|
||
$acceptModelChanged(uri, e) {
|
||
if (!this._models[uri]) {
|
||
return;
|
||
}
|
||
const model = this._models[uri];
|
||
model.onEvents(e);
|
||
}
|
||
$acceptRemovedModel(uri) {
|
||
if (!this._models[uri]) {
|
||
return;
|
||
}
|
||
delete this._models[uri];
|
||
}
|
||
}
|
||
exports.WorkerTextModelSyncServer = WorkerTextModelSyncServer;
|
||
class MirrorModel extends mirrorTextModel_1.MirrorTextModel {
|
||
get uri() {
|
||
return this._uri;
|
||
}
|
||
get eol() {
|
||
return this._eol;
|
||
}
|
||
getValue() {
|
||
return this.getText();
|
||
}
|
||
findMatches(regex) {
|
||
const matches = [];
|
||
for (let i = 0; i < this._lines.length; i++) {
|
||
const line = this._lines[i];
|
||
const offsetToAdd = this.offsetAt(new position_1.Position(i + 1, 1));
|
||
const iteratorOverMatches = line.matchAll(regex);
|
||
for (const match of iteratorOverMatches) {
|
||
if (match.index || match.index === 0) {
|
||
match.index = match.index + offsetToAdd;
|
||
}
|
||
matches.push(match);
|
||
}
|
||
}
|
||
return matches;
|
||
}
|
||
getLinesContent() {
|
||
return this._lines.slice(0);
|
||
}
|
||
getLineCount() {
|
||
return this._lines.length;
|
||
}
|
||
getLineContent(lineNumber) {
|
||
return this._lines[lineNumber - 1];
|
||
}
|
||
getWordAtPosition(position, wordDefinition) {
|
||
const wordAtText = (0, wordHelper_1.getWordAtText)(position.column, (0, wordHelper_1.ensureValidWordDefinition)(wordDefinition), this._lines[position.lineNumber - 1], 0);
|
||
if (wordAtText) {
|
||
return new range_1.Range(position.lineNumber, wordAtText.startColumn, position.lineNumber, wordAtText.endColumn);
|
||
}
|
||
return null;
|
||
}
|
||
words(wordDefinition) {
|
||
const lines = this._lines;
|
||
const wordenize = this._wordenize.bind(this);
|
||
let lineNumber = 0;
|
||
let lineText = '';
|
||
let wordRangesIdx = 0;
|
||
let wordRanges = [];
|
||
return {
|
||
*[Symbol.iterator]() {
|
||
while (true) {
|
||
if (wordRangesIdx < wordRanges.length) {
|
||
const value = lineText.substring(wordRanges[wordRangesIdx].start, wordRanges[wordRangesIdx].end);
|
||
wordRangesIdx += 1;
|
||
yield value;
|
||
}
|
||
else {
|
||
if (lineNumber < lines.length) {
|
||
lineText = lines[lineNumber];
|
||
wordRanges = wordenize(lineText, wordDefinition);
|
||
wordRangesIdx = 0;
|
||
lineNumber += 1;
|
||
}
|
||
else {
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
};
|
||
}
|
||
getLineWords(lineNumber, wordDefinition) {
|
||
const content = this._lines[lineNumber - 1];
|
||
const ranges = this._wordenize(content, wordDefinition);
|
||
const words = [];
|
||
for (const range of ranges) {
|
||
words.push({
|
||
word: content.substring(range.start, range.end),
|
||
startColumn: range.start + 1,
|
||
endColumn: range.end + 1
|
||
});
|
||
}
|
||
return words;
|
||
}
|
||
_wordenize(content, wordDefinition) {
|
||
const result = [];
|
||
let match;
|
||
wordDefinition.lastIndex = 0; // reset lastIndex just to be sure
|
||
while (match = wordDefinition.exec(content)) {
|
||
if (match[0].length === 0) {
|
||
// it did match the empty string
|
||
break;
|
||
}
|
||
result.push({ start: match.index, end: match.index + match[0].length });
|
||
}
|
||
return result;
|
||
}
|
||
getValueInRange(range) {
|
||
range = this._validateRange(range);
|
||
if (range.startLineNumber === range.endLineNumber) {
|
||
return this._lines[range.startLineNumber - 1].substring(range.startColumn - 1, range.endColumn - 1);
|
||
}
|
||
const lineEnding = this._eol;
|
||
const startLineIndex = range.startLineNumber - 1;
|
||
const endLineIndex = range.endLineNumber - 1;
|
||
const resultLines = [];
|
||
resultLines.push(this._lines[startLineIndex].substring(range.startColumn - 1));
|
||
for (let i = startLineIndex + 1; i < endLineIndex; i++) {
|
||
resultLines.push(this._lines[i]);
|
||
}
|
||
resultLines.push(this._lines[endLineIndex].substring(0, range.endColumn - 1));
|
||
return resultLines.join(lineEnding);
|
||
}
|
||
offsetAt(position) {
|
||
position = this._validatePosition(position);
|
||
this._ensureLineStarts();
|
||
return this._lineStarts.getPrefixSum(position.lineNumber - 2) + (position.column - 1);
|
||
}
|
||
positionAt(offset) {
|
||
offset = Math.floor(offset);
|
||
offset = Math.max(0, offset);
|
||
this._ensureLineStarts();
|
||
const out = this._lineStarts.getIndexOf(offset);
|
||
const lineLength = this._lines[out.index].length;
|
||
// Ensure we return a valid position
|
||
return {
|
||
lineNumber: 1 + out.index,
|
||
column: 1 + Math.min(out.remainder, lineLength)
|
||
};
|
||
}
|
||
_validateRange(range) {
|
||
const start = this._validatePosition({ lineNumber: range.startLineNumber, column: range.startColumn });
|
||
const end = this._validatePosition({ lineNumber: range.endLineNumber, column: range.endColumn });
|
||
if (start.lineNumber !== range.startLineNumber
|
||
|| start.column !== range.startColumn
|
||
|| end.lineNumber !== range.endLineNumber
|
||
|| end.column !== range.endColumn) {
|
||
return {
|
||
startLineNumber: start.lineNumber,
|
||
startColumn: start.column,
|
||
endLineNumber: end.lineNumber,
|
||
endColumn: end.column
|
||
};
|
||
}
|
||
return range;
|
||
}
|
||
_validatePosition(position) {
|
||
if (!position_1.Position.isIPosition(position)) {
|
||
throw new Error('bad position');
|
||
}
|
||
let { lineNumber, column } = position;
|
||
let hasChanged = false;
|
||
if (lineNumber < 1) {
|
||
lineNumber = 1;
|
||
column = 1;
|
||
hasChanged = true;
|
||
}
|
||
else if (lineNumber > this._lines.length) {
|
||
lineNumber = this._lines.length;
|
||
column = this._lines[lineNumber - 1].length + 1;
|
||
hasChanged = true;
|
||
}
|
||
else {
|
||
const maxCharacter = this._lines[lineNumber - 1].length + 1;
|
||
if (column < 1) {
|
||
column = 1;
|
||
hasChanged = true;
|
||
}
|
||
else if (column > maxCharacter) {
|
||
column = maxCharacter;
|
||
hasChanged = true;
|
||
}
|
||
}
|
||
if (!hasChanged) {
|
||
return position;
|
||
}
|
||
else {
|
||
return { lineNumber, column };
|
||
}
|
||
}
|
||
}
|
||
exports.MirrorModel = MirrorModel;
|
||
});
|
||
|
||
/*---------------------------------------------------------------------------------------------
|
||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
*--------------------------------------------------------------------------------------------*/
|
||
define(__m[77/*vs/editor/common/services/editorSimpleWorker*/], __M([0/*require*/,1/*exports*/,24/*vs/base/common/diff/diff*/,2/*vs/editor/common/core/range*/,60/*vs/editor/common/languages/linkComputer*/,61/*vs/editor/common/languages/supports/inplaceReplaceSupport*/,74/*vs/editor/common/services/editorBaseApi*/,66/*vs/editor/common/services/editorWorkerHost*/,22/*vs/base/common/stopwatch*/,68/*vs/editor/common/services/unicodeTextModelHighlighter*/,58/*vs/editor/common/diff/linesDiffComputers*/,27/*vs/base/common/objects*/,38/*vs/base/common/network*/,59/*vs/editor/common/languages/defaultDocumentColorsComputer*/,67/*vs/editor/common/services/findSectionHeaders*/,75/*vs/editor/common/services/textModelSync/textModelSync.impl*/]), function (require, exports, diff_1, range_1, linkComputer_1, inplaceReplaceSupport_1, editorBaseApi_1, editorWorkerHost_1, stopwatch_1, unicodeTextModelHighlighter_1, linesDiffComputers_1, objects_1, network_1, defaultDocumentColorsComputer_1, findSectionHeaders_1, textModelSync_impl_1) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
exports.EditorSimpleWorker = exports.BaseEditorSimpleWorker = void 0;
|
||
exports.create = create;
|
||
// ESM-comment-begin
|
||
const isESM = false;
|
||
/**
|
||
* @internal
|
||
*/
|
||
class BaseEditorSimpleWorker {
|
||
constructor() {
|
||
this._workerTextModelSyncServer = new textModelSync_impl_1.WorkerTextModelSyncServer();
|
||
}
|
||
dispose() {
|
||
}
|
||
_getModel(uri) {
|
||
return this._workerTextModelSyncServer.getModel(uri);
|
||
}
|
||
_getModels() {
|
||
return this._workerTextModelSyncServer.getModels();
|
||
}
|
||
$acceptNewModel(data) {
|
||
this._workerTextModelSyncServer.$acceptNewModel(data);
|
||
}
|
||
$acceptModelChanged(uri, e) {
|
||
this._workerTextModelSyncServer.$acceptModelChanged(uri, e);
|
||
}
|
||
$acceptRemovedModel(uri) {
|
||
this._workerTextModelSyncServer.$acceptRemovedModel(uri);
|
||
}
|
||
async $computeUnicodeHighlights(url, options, range) {
|
||
const model = this._getModel(url);
|
||
if (!model) {
|
||
return { ranges: [], hasMore: false, ambiguousCharacterCount: 0, invisibleCharacterCount: 0, nonBasicAsciiCharacterCount: 0 };
|
||
}
|
||
return unicodeTextModelHighlighter_1.UnicodeTextModelHighlighter.computeUnicodeHighlights(model, options, range);
|
||
}
|
||
async $findSectionHeaders(url, options) {
|
||
const model = this._getModel(url);
|
||
if (!model) {
|
||
return [];
|
||
}
|
||
return (0, findSectionHeaders_1.findSectionHeaders)(model, options);
|
||
}
|
||
// ---- BEGIN diff --------------------------------------------------------------------------
|
||
async $computeDiff(originalUrl, modifiedUrl, options, algorithm) {
|
||
const original = this._getModel(originalUrl);
|
||
const modified = this._getModel(modifiedUrl);
|
||
if (!original || !modified) {
|
||
return null;
|
||
}
|
||
const result = EditorSimpleWorker.computeDiff(original, modified, options, algorithm);
|
||
return result;
|
||
}
|
||
static computeDiff(originalTextModel, modifiedTextModel, options, algorithm) {
|
||
const diffAlgorithm = algorithm === 'advanced' ? linesDiffComputers_1.linesDiffComputers.getDefault() : linesDiffComputers_1.linesDiffComputers.getLegacy();
|
||
const originalLines = originalTextModel.getLinesContent();
|
||
const modifiedLines = modifiedTextModel.getLinesContent();
|
||
const result = diffAlgorithm.computeDiff(originalLines, modifiedLines, options);
|
||
const identical = (result.changes.length > 0 ? false : this._modelsAreIdentical(originalTextModel, modifiedTextModel));
|
||
function getLineChanges(changes) {
|
||
return changes.map(m => ([m.original.startLineNumber, m.original.endLineNumberExclusive, m.modified.startLineNumber, m.modified.endLineNumberExclusive, m.innerChanges?.map(m => [
|
||
m.originalRange.startLineNumber,
|
||
m.originalRange.startColumn,
|
||
m.originalRange.endLineNumber,
|
||
m.originalRange.endColumn,
|
||
m.modifiedRange.startLineNumber,
|
||
m.modifiedRange.startColumn,
|
||
m.modifiedRange.endLineNumber,
|
||
m.modifiedRange.endColumn,
|
||
])]));
|
||
}
|
||
return {
|
||
identical,
|
||
quitEarly: result.hitTimeout,
|
||
changes: getLineChanges(result.changes),
|
||
moves: result.moves.map(m => ([
|
||
m.lineRangeMapping.original.startLineNumber,
|
||
m.lineRangeMapping.original.endLineNumberExclusive,
|
||
m.lineRangeMapping.modified.startLineNumber,
|
||
m.lineRangeMapping.modified.endLineNumberExclusive,
|
||
getLineChanges(m.changes)
|
||
])),
|
||
};
|
||
}
|
||
static _modelsAreIdentical(original, modified) {
|
||
const originalLineCount = original.getLineCount();
|
||
const modifiedLineCount = modified.getLineCount();
|
||
if (originalLineCount !== modifiedLineCount) {
|
||
return false;
|
||
}
|
||
for (let line = 1; line <= originalLineCount; line++) {
|
||
const originalLine = original.getLineContent(line);
|
||
const modifiedLine = modified.getLineContent(line);
|
||
if (originalLine !== modifiedLine) {
|
||
return false;
|
||
}
|
||
}
|
||
return true;
|
||
}
|
||
// ---- END diff --------------------------------------------------------------------------
|
||
// ---- BEGIN minimal edits ---------------------------------------------------------------
|
||
static { this._diffLimit = 100000; }
|
||
async $computeMoreMinimalEdits(modelUrl, edits, pretty) {
|
||
const model = this._getModel(modelUrl);
|
||
if (!model) {
|
||
return edits;
|
||
}
|
||
const result = [];
|
||
let lastEol = undefined;
|
||
edits = edits.slice(0).sort((a, b) => {
|
||
if (a.range && b.range) {
|
||
return range_1.Range.compareRangesUsingStarts(a.range, b.range);
|
||
}
|
||
// eol only changes should go to the end
|
||
const aRng = a.range ? 0 : 1;
|
||
const bRng = b.range ? 0 : 1;
|
||
return aRng - bRng;
|
||
});
|
||
// merge adjacent edits
|
||
let writeIndex = 0;
|
||
for (let readIndex = 1; readIndex < edits.length; readIndex++) {
|
||
if (range_1.Range.getEndPosition(edits[writeIndex].range).equals(range_1.Range.getStartPosition(edits[readIndex].range))) {
|
||
edits[writeIndex].range = range_1.Range.fromPositions(range_1.Range.getStartPosition(edits[writeIndex].range), range_1.Range.getEndPosition(edits[readIndex].range));
|
||
edits[writeIndex].text += edits[readIndex].text;
|
||
}
|
||
else {
|
||
writeIndex++;
|
||
edits[writeIndex] = edits[readIndex];
|
||
}
|
||
}
|
||
edits.length = writeIndex + 1;
|
||
for (let { range, text, eol } of edits) {
|
||
if (typeof eol === 'number') {
|
||
lastEol = eol;
|
||
}
|
||
if (range_1.Range.isEmpty(range) && !text) {
|
||
// empty change
|
||
continue;
|
||
}
|
||
const original = model.getValueInRange(range);
|
||
text = text.replace(/\r\n|\n|\r/g, model.eol);
|
||
if (original === text) {
|
||
// noop
|
||
continue;
|
||
}
|
||
// make sure diff won't take too long
|
||
if (Math.max(text.length, original.length) > EditorSimpleWorker._diffLimit) {
|
||
result.push({ range, text });
|
||
continue;
|
||
}
|
||
// compute diff between original and edit.text
|
||
const changes = (0, diff_1.stringDiff)(original, text, pretty);
|
||
const editOffset = model.offsetAt(range_1.Range.lift(range).getStartPosition());
|
||
for (const change of changes) {
|
||
const start = model.positionAt(editOffset + change.originalStart);
|
||
const end = model.positionAt(editOffset + change.originalStart + change.originalLength);
|
||
const newEdit = {
|
||
text: text.substr(change.modifiedStart, change.modifiedLength),
|
||
range: { startLineNumber: start.lineNumber, startColumn: start.column, endLineNumber: end.lineNumber, endColumn: end.column }
|
||
};
|
||
if (model.getValueInRange(newEdit.range) !== newEdit.text) {
|
||
result.push(newEdit);
|
||
}
|
||
}
|
||
}
|
||
if (typeof lastEol === 'number') {
|
||
result.push({ eol: lastEol, text: '', range: { startLineNumber: 0, startColumn: 0, endLineNumber: 0, endColumn: 0 } });
|
||
}
|
||
return result;
|
||
}
|
||
// ---- END minimal edits ---------------------------------------------------------------
|
||
async $computeLinks(modelUrl) {
|
||
const model = this._getModel(modelUrl);
|
||
if (!model) {
|
||
return null;
|
||
}
|
||
return (0, linkComputer_1.computeLinks)(model);
|
||
}
|
||
// --- BEGIN default document colors -----------------------------------------------------------
|
||
async $computeDefaultDocumentColors(modelUrl) {
|
||
const model = this._getModel(modelUrl);
|
||
if (!model) {
|
||
return null;
|
||
}
|
||
return (0, defaultDocumentColorsComputer_1.computeDefaultDocumentColors)(model);
|
||
}
|
||
// ---- BEGIN suggest --------------------------------------------------------------------------
|
||
static { this._suggestionsLimit = 10000; }
|
||
async $textualSuggest(modelUrls, leadingWord, wordDef, wordDefFlags) {
|
||
const sw = new stopwatch_1.StopWatch();
|
||
const wordDefRegExp = new RegExp(wordDef, wordDefFlags);
|
||
const seen = new Set();
|
||
outer: for (const url of modelUrls) {
|
||
const model = this._getModel(url);
|
||
if (!model) {
|
||
continue;
|
||
}
|
||
for (const word of model.words(wordDefRegExp)) {
|
||
if (word === leadingWord || !isNaN(Number(word))) {
|
||
continue;
|
||
}
|
||
seen.add(word);
|
||
if (seen.size > EditorSimpleWorker._suggestionsLimit) {
|
||
break outer;
|
||
}
|
||
}
|
||
}
|
||
return { words: Array.from(seen), duration: sw.elapsed() };
|
||
}
|
||
// ---- END suggest --------------------------------------------------------------------------
|
||
//#region -- word ranges --
|
||
async $computeWordRanges(modelUrl, range, wordDef, wordDefFlags) {
|
||
const model = this._getModel(modelUrl);
|
||
if (!model) {
|
||
return Object.create(null);
|
||
}
|
||
const wordDefRegExp = new RegExp(wordDef, wordDefFlags);
|
||
const result = Object.create(null);
|
||
for (let line = range.startLineNumber; line < range.endLineNumber; line++) {
|
||
const words = model.getLineWords(line, wordDefRegExp);
|
||
for (const word of words) {
|
||
if (!isNaN(Number(word.word))) {
|
||
continue;
|
||
}
|
||
let array = result[word.word];
|
||
if (!array) {
|
||
array = [];
|
||
result[word.word] = array;
|
||
}
|
||
array.push({
|
||
startLineNumber: line,
|
||
startColumn: word.startColumn,
|
||
endLineNumber: line,
|
||
endColumn: word.endColumn
|
||
});
|
||
}
|
||
}
|
||
return result;
|
||
}
|
||
//#endregion
|
||
async $navigateValueSet(modelUrl, range, up, wordDef, wordDefFlags) {
|
||
const model = this._getModel(modelUrl);
|
||
if (!model) {
|
||
return null;
|
||
}
|
||
const wordDefRegExp = new RegExp(wordDef, wordDefFlags);
|
||
if (range.startColumn === range.endColumn) {
|
||
range = {
|
||
startLineNumber: range.startLineNumber,
|
||
startColumn: range.startColumn,
|
||
endLineNumber: range.endLineNumber,
|
||
endColumn: range.endColumn + 1
|
||
};
|
||
}
|
||
const selectionText = model.getValueInRange(range);
|
||
const wordRange = model.getWordAtPosition({ lineNumber: range.startLineNumber, column: range.startColumn }, wordDefRegExp);
|
||
if (!wordRange) {
|
||
return null;
|
||
}
|
||
const word = model.getValueInRange(wordRange);
|
||
const result = inplaceReplaceSupport_1.BasicInplaceReplace.INSTANCE.navigateValueSet(range, selectionText, wordRange, word, up);
|
||
return result;
|
||
}
|
||
}
|
||
exports.BaseEditorSimpleWorker = BaseEditorSimpleWorker;
|
||
/**
|
||
* @internal
|
||
*/
|
||
class EditorSimpleWorker extends BaseEditorSimpleWorker {
|
||
constructor(_host, _foreignModuleFactory) {
|
||
super();
|
||
this._host = _host;
|
||
this._foreignModuleFactory = _foreignModuleFactory;
|
||
this._foreignModule = null;
|
||
}
|
||
async $ping() {
|
||
return 'pong';
|
||
}
|
||
// ---- BEGIN foreign module support --------------------------------------------------------------------------
|
||
$loadForeignModule(moduleId, createData, foreignHostMethods) {
|
||
const proxyMethodRequest = (method, args) => {
|
||
return this._host.$fhr(method, args);
|
||
};
|
||
const foreignHost = (0, objects_1.createProxyObject)(foreignHostMethods, proxyMethodRequest);
|
||
const ctx = {
|
||
host: foreignHost,
|
||
getMirrorModels: () => {
|
||
return this._getModels();
|
||
}
|
||
};
|
||
if (this._foreignModuleFactory) {
|
||
this._foreignModule = this._foreignModuleFactory(ctx, createData);
|
||
// static foreing module
|
||
return Promise.resolve((0, objects_1.getAllMethodNames)(this._foreignModule));
|
||
}
|
||
return new Promise((resolve, reject) => {
|
||
const onModuleCallback = (foreignModule) => {
|
||
this._foreignModule = foreignModule.create(ctx, createData);
|
||
resolve((0, objects_1.getAllMethodNames)(this._foreignModule));
|
||
};
|
||
if (!isESM) {
|
||
require([`${moduleId}`], onModuleCallback, reject);
|
||
}
|
||
else {
|
||
const url = network_1.FileAccess.asBrowserUri(`${moduleId}.js`).toString(true);
|
||
new Promise((resolve_1, reject_1) => { require([`${url}`], resolve_1, reject_1); }).then(onModuleCallback).catch(reject);
|
||
}
|
||
});
|
||
}
|
||
// foreign method request
|
||
$fmr(method, args) {
|
||
if (!this._foreignModule || typeof this._foreignModule[method] !== 'function') {
|
||
return Promise.reject(new Error('Missing requestHandler or method: ' + method));
|
||
}
|
||
try {
|
||
return Promise.resolve(this._foreignModule[method].apply(this._foreignModule, args));
|
||
}
|
||
catch (e) {
|
||
return Promise.reject(e);
|
||
}
|
||
}
|
||
}
|
||
exports.EditorSimpleWorker = EditorSimpleWorker;
|
||
/**
|
||
* Defines the worker entry point. Must be exported and named `create`.
|
||
* @skipMangle
|
||
* @internal
|
||
*/
|
||
function create(workerServer) {
|
||
return new EditorSimpleWorker(editorWorkerHost_1.EditorWorkerHost.getChannel(workerServer), null);
|
||
}
|
||
if (typeof importScripts === 'function') {
|
||
// Running in a web worker
|
||
globalThis.monaco = (0, editorBaseApi_1.createMonacoBaseAPI)();
|
||
}
|
||
});
|
||
|
||
}).call(this);
|
||
//# sourceMappingURL=workerMain.js.map
|