Fix markdown web extensions (#148739)

We're currently importing a file from `test/util`, which is not supported on web. Move the noop cancellation token into the `util` folder instead
This commit is contained in:
Matt Bierner
2022-05-04 14:02:38 -07:00
committed by GitHub
parent 5812a0e4b8
commit 9dab79d9c8
11 changed files with 31 additions and 17 deletions

View File

@@ -0,0 +1,13 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import * as vscode from 'vscode';
export const noopToken = new class implements vscode.CancellationToken {
_onCancellationRequestedEmitter = new vscode.EventEmitter<void>();
onCancellationRequested = this._onCancellationRequestedEmitter.event;
get isCancellationRequested() { return false; }
};