mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 18:32:56 +01:00
deploy: 920affc75f
This commit is contained in:
parent
422a7f387d
commit
7fa95ab92c
378 changed files with 419 additions and 429 deletions
2
610.js
2
610.js
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -48,7 +48,7 @@ export declare class SignatureHelpAdapter extends Adapter implements languages.S
|
||||||
export declare class QuickInfoAdapter extends Adapter implements languages.HoverProvider {
|
export declare class QuickInfoAdapter extends Adapter implements languages.HoverProvider {
|
||||||
provideHover(model: editor.ITextModel, position: Position, token: CancellationToken): Promise<languages.Hover | undefined>;
|
provideHover(model: editor.ITextModel, position: Position, token: CancellationToken): Promise<languages.Hover | undefined>;
|
||||||
}
|
}
|
||||||
export declare class OccurrencesAdapter extends Adapter implements languages.DocumentHighlightProvider {
|
export declare class DocumentHighlightAdapter extends Adapter implements languages.DocumentHighlightProvider {
|
||||||
provideDocumentHighlights(model: editor.ITextModel, position: Position, token: CancellationToken): Promise<languages.DocumentHighlight[] | undefined>;
|
provideDocumentHighlights(model: editor.ITextModel, position: Position, token: CancellationToken): Promise<languages.DocumentHighlight[] | undefined>;
|
||||||
}
|
}
|
||||||
export declare class DefinitionAdapter extends Adapter {
|
export declare class DefinitionAdapter extends Adapter {
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -368,11 +368,7 @@ export interface TypeScriptWorker {
|
||||||
* @returns `Promise<typescript.QuickInfo | undefined>`
|
* @returns `Promise<typescript.QuickInfo | undefined>`
|
||||||
*/
|
*/
|
||||||
getQuickInfoAtPosition(fileName: string, position: number): Promise<any | undefined>;
|
getQuickInfoAtPosition(fileName: string, position: number): Promise<any | undefined>;
|
||||||
/**
|
getDocumentHighlights(fileName: string, position: number, filesToSearch: string[]): Promise<ReadonlyArray<any> | undefined>;
|
||||||
* Get other ranges which are related to the item at the given position in the file (often used for highlighting).
|
|
||||||
* @returns `Promise<ReadonlyArray<typescript.ReferenceEntry> | undefined>`
|
|
||||||
*/
|
|
||||||
getOccurrencesAtPosition(fileName: string, position: number): Promise<ReadonlyArray<any> | undefined>;
|
|
||||||
/**
|
/**
|
||||||
* Get the definition of the item at the given position in the file.
|
* Get the definition of the item at the given position in the file.
|
||||||
* @returns `Promise<ReadonlyArray<typescript.DefinitionInfo> | undefined>`
|
* @returns `Promise<ReadonlyArray<typescript.DefinitionInfo> | undefined>`
|
||||||
|
|
@ -385,9 +381,9 @@ export interface TypeScriptWorker {
|
||||||
getReferencesAtPosition(fileName: string, position: number): Promise<any[] | undefined>;
|
getReferencesAtPosition(fileName: string, position: number): Promise<any[] | undefined>;
|
||||||
/**
|
/**
|
||||||
* Get outline entries for the item at the given position in the file.
|
* Get outline entries for the item at the given position in the file.
|
||||||
* @returns `Promise<typescript.NavigationBarItem[]>`
|
* @returns `Promise<typescript.NavigationTree | undefined>`
|
||||||
*/
|
*/
|
||||||
getNavigationBarItems(fileName: string): Promise<any[]>;
|
getNavigationTree(fileName: string): Promise<any | undefined>;
|
||||||
/**
|
/**
|
||||||
* Get changes which should be applied to format the given file.
|
* Get changes which should be applied to format the given file.
|
||||||
* @param options `typescript.FormatCodeOptions`
|
* @param options `typescript.FormatCodeOptions`
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
||||||
var __createBinding=this&&this.__createBinding||(Object.create?function(e,r,t,n){void 0===n&&(n=t);var i=Object.getOwnPropertyDescriptor(r,t);i&&!("get"in i?!r.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return r[t]}}),Object.defineProperty(e,n,i)}:function(e,r,t,n){void 0===n&&(n=t),e[n]=r[t]}),__exportStar=this&&this.__exportStar||function(e,r){for(var t in e)"default"===t||Object.prototype.hasOwnProperty.call(r,t)||__createBinding(r,e,t)};define(["require","exports","./workerManager","./languageFeatures","../../fillers/monaco-editor-core","./workerManager","./languageFeatures"],(function(e,r,t,n,i,a,o){"use strict";var s,u;function g(e,r){var a=[],o=[],s=new t.WorkerManager(r,e);a.push(s);var u,g=function(){for(var e=[],r=0;r<arguments.length;r++)e[r]=arguments[r];return s.getLanguageServiceWorker.apply(s,e)},c=new n.LibFiles(g);return u=e.modeConfiguration,p(o),u.completionItems&&o.push(i.languages.registerCompletionItemProvider(r,new n.SuggestAdapter(g))),u.signatureHelp&&o.push(i.languages.registerSignatureHelpProvider(r,new n.SignatureHelpAdapter(g))),u.hovers&&o.push(i.languages.registerHoverProvider(r,new n.QuickInfoAdapter(g))),u.documentHighlights&&o.push(i.languages.registerDocumentHighlightProvider(r,new n.OccurrencesAdapter(g))),u.definitions&&o.push(i.languages.registerDefinitionProvider(r,new n.DefinitionAdapter(c,g))),u.references&&o.push(i.languages.registerReferenceProvider(r,new n.ReferenceAdapter(c,g))),u.documentSymbols&&o.push(i.languages.registerDocumentSymbolProvider(r,new n.OutlineAdapter(g))),u.rename&&o.push(i.languages.registerRenameProvider(r,new n.RenameAdapter(c,g))),u.documentRangeFormattingEdits&&o.push(i.languages.registerDocumentRangeFormattingEditProvider(r,new n.FormatAdapter(g))),u.onTypeFormattingEdits&&o.push(i.languages.registerOnTypeFormattingEditProvider(r,new n.FormatOnTypeAdapter(g))),u.codeActions&&o.push(i.languages.registerCodeActionProvider(r,new n.CodeActionAdaptor(g))),u.inlayHints&&o.push(i.languages.registerInlayHintsProvider(r,new n.InlayHintsAdapter(g))),u.diagnostics&&o.push(new n.DiagnosticsAdapter(c,e,r,g)),a.push(function(e){return{dispose:function(){return p(e)}}}(o)),g}function p(e){for(;e.length;)e.pop().dispose()}Object.defineProperty(r,"__esModule",{value:!0}),r.WorkerManager=r.getTypeScriptWorker=r.getJavaScriptWorker=r.setupJavaScript=r.setupTypeScript=void 0,r.setupTypeScript=function(e){u=g(e,"typescript")},r.setupJavaScript=function(e){s=g(e,"javascript")},r.getJavaScriptWorker=function(){return new Promise((function(e,r){if(!s)return r("JavaScript not registered!");e(s)}))},r.getTypeScriptWorker=function(){return new Promise((function(e,r){if(!u)return r("TypeScript not registered!");e(u)}))},Object.defineProperty(r,"WorkerManager",{enumerable:!0,get:function(){return a.WorkerManager}}),__exportStar(o,r)}));
|
var __createBinding=this&&this.__createBinding||(Object.create?function(e,r,t,n){void 0===n&&(n=t);var i=Object.getOwnPropertyDescriptor(r,t);i&&!("get"in i?!r.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return r[t]}}),Object.defineProperty(e,n,i)}:function(e,r,t,n){void 0===n&&(n=t),e[n]=r[t]}),__exportStar=this&&this.__exportStar||function(e,r){for(var t in e)"default"===t||Object.prototype.hasOwnProperty.call(r,t)||__createBinding(r,e,t)};define(["require","exports","./workerManager","./languageFeatures","../../fillers/monaco-editor-core","./workerManager","./languageFeatures"],(function(e,r,t,n,i,a,o){"use strict";var s,u;function g(e,r){var a=[],o=[],s=new t.WorkerManager(r,e);a.push(s);var u,g=function(){for(var e=[],r=0;r<arguments.length;r++)e[r]=arguments[r];return s.getLanguageServiceWorker.apply(s,e)},c=new n.LibFiles(g);return u=e.modeConfiguration,p(o),u.completionItems&&o.push(i.languages.registerCompletionItemProvider(r,new n.SuggestAdapter(g))),u.signatureHelp&&o.push(i.languages.registerSignatureHelpProvider(r,new n.SignatureHelpAdapter(g))),u.hovers&&o.push(i.languages.registerHoverProvider(r,new n.QuickInfoAdapter(g))),u.documentHighlights&&o.push(i.languages.registerDocumentHighlightProvider(r,new n.DocumentHighlightAdapter(g))),u.definitions&&o.push(i.languages.registerDefinitionProvider(r,new n.DefinitionAdapter(c,g))),u.references&&o.push(i.languages.registerReferenceProvider(r,new n.ReferenceAdapter(c,g))),u.documentSymbols&&o.push(i.languages.registerDocumentSymbolProvider(r,new n.OutlineAdapter(g))),u.rename&&o.push(i.languages.registerRenameProvider(r,new n.RenameAdapter(c,g))),u.documentRangeFormattingEdits&&o.push(i.languages.registerDocumentRangeFormattingEditProvider(r,new n.FormatAdapter(g))),u.onTypeFormattingEdits&&o.push(i.languages.registerOnTypeFormattingEditProvider(r,new n.FormatOnTypeAdapter(g))),u.codeActions&&o.push(i.languages.registerCodeActionProvider(r,new n.CodeActionAdaptor(g))),u.inlayHints&&o.push(i.languages.registerInlayHintsProvider(r,new n.InlayHintsAdapter(g))),u.diagnostics&&o.push(new n.DiagnosticsAdapter(c,e,r,g)),a.push(function(e){return{dispose:function(){return p(e)}}}(o)),g}function p(e){for(;e.length;)e.pop().dispose()}Object.defineProperty(r,"__esModule",{value:!0}),r.WorkerManager=r.getTypeScriptWorker=r.getJavaScriptWorker=r.setupJavaScript=r.setupTypeScript=void 0,r.setupTypeScript=function(e){u=g(e,"typescript")},r.setupJavaScript=function(e){s=g(e,"javascript")},r.getJavaScriptWorker=function(){return new Promise((function(e,r){if(!s)return r("JavaScript not registered!");e(s)}))},r.getTypeScriptWorker=function(){return new Promise((function(e,r){if(!u)return r("TypeScript not registered!");e(u)}))},Object.defineProperty(r,"WorkerManager",{enumerable:!0,get:function(){return a.WorkerManager}}),__exportStar(o,r)}));
|
||||||
|
|
@ -1 +1 @@
|
||||||
{"version":3,"file":"tsMode.js","sourceRoot":"","sources":["../../../../../src/language/typescript/tsMode.ts"],"names":[],"mappings":"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"}
|
{"version":3,"file":"tsMode.js","sourceRoot":"","sources":["../../../../../src/language/typescript/tsMode.ts"],"names":[],"mappings":"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"}
|
||||||
|
|
@ -33,10 +33,10 @@ export declare class TypeScriptWorker implements ts.LanguageServiceHost, ITypeSc
|
||||||
getCompletionEntryDetails(fileName: string, position: number, entry: string): Promise<ts.CompletionEntryDetails | undefined>;
|
getCompletionEntryDetails(fileName: string, position: number, entry: string): Promise<ts.CompletionEntryDetails | undefined>;
|
||||||
getSignatureHelpItems(fileName: string, position: number, options: ts.SignatureHelpItemsOptions | undefined): Promise<ts.SignatureHelpItems | undefined>;
|
getSignatureHelpItems(fileName: string, position: number, options: ts.SignatureHelpItemsOptions | undefined): Promise<ts.SignatureHelpItems | undefined>;
|
||||||
getQuickInfoAtPosition(fileName: string, position: number): Promise<ts.QuickInfo | undefined>;
|
getQuickInfoAtPosition(fileName: string, position: number): Promise<ts.QuickInfo | undefined>;
|
||||||
getOccurrencesAtPosition(fileName: string, position: number): Promise<ReadonlyArray<ts.ReferenceEntry> | undefined>;
|
getDocumentHighlights(fileName: string, position: number, filesToSearch: string[]): Promise<ReadonlyArray<ts.DocumentHighlights> | undefined>;
|
||||||
getDefinitionAtPosition(fileName: string, position: number): Promise<ReadonlyArray<ts.DefinitionInfo> | undefined>;
|
getDefinitionAtPosition(fileName: string, position: number): Promise<ReadonlyArray<ts.DefinitionInfo> | undefined>;
|
||||||
getReferencesAtPosition(fileName: string, position: number): Promise<ts.ReferenceEntry[] | undefined>;
|
getReferencesAtPosition(fileName: string, position: number): Promise<ts.ReferenceEntry[] | undefined>;
|
||||||
getNavigationBarItems(fileName: string): Promise<ts.NavigationBarItem[]>;
|
getNavigationTree(fileName: string): Promise<ts.NavigationTree | undefined>;
|
||||||
getFormattingEditsForDocument(fileName: string, options: ts.FormatCodeOptions): Promise<ts.TextChange[]>;
|
getFormattingEditsForDocument(fileName: string, options: ts.FormatCodeOptions): Promise<ts.TextChange[]>;
|
||||||
getFormattingEditsForRange(fileName: string, start: number, end: number, options: ts.FormatCodeOptions): Promise<ts.TextChange[]>;
|
getFormattingEditsForRange(fileName: string, start: number, end: number, options: ts.FormatCodeOptions): Promise<ts.TextChange[]>;
|
||||||
getFormattingEditsAfterKeystroke(fileName: string, postion: number, ch: string, options: ts.FormatCodeOptions): Promise<ts.TextChange[]>;
|
getFormattingEditsAfterKeystroke(fileName: string, postion: number, ch: string, options: ts.FormatCodeOptions): Promise<ts.TextChange[]>;
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/*!-----------------------------------------------------------------------------
|
/*!-----------------------------------------------------------------------------
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
* Version: 0.36.1(2b2e2a1eb793090ea4e91d2f6998ebeede9b6129)
|
* Version: 0.36.1(920affc75f7f5d505eaaa5299d4323e4a90d5be1)
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
||||||
*-----------------------------------------------------------------------------*/
|
*-----------------------------------------------------------------------------*/
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue