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

@@ -7,8 +7,8 @@ import * as vscode from 'vscode';
import * as nls from 'vscode-nls';
import { MarkdownEngine } from '../markdownEngine';
import { TableOfContents } from '../tableOfContents';
import { noopToken } from '../test/util';
import { Delayer } from '../util/async';
import { noopToken } from '../util/cancellation';
import { Disposable } from '../util/dispose';
import { isMarkdownFile } from '../util/file';
import { MdWorkspaceContents, SkinnyTextDocument } from '../workspaceContents';