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

@@ -10,12 +10,6 @@ import { InMemoryDocument } from '../util/inMemoryDocument';
export const joinLines = (...args: string[]) =>
args.join(os.platform() === 'win32' ? '\r\n' : '\n');
export const noopToken = new class implements vscode.CancellationToken {
_onCancellationRequestedEmitter = new vscode.EventEmitter<void>();
onCancellationRequested = this._onCancellationRequestedEmitter.event;
get isCancellationRequested() { return false; }
};
export const CURSOR = '$$CURSOR$$';