提交 11f24f64 编写于 作者: M Matt Bierner

Build VS code using TS 3.7-beta

Fixes #82286
上级 d80739df
......@@ -42,7 +42,7 @@
"request": "^2.85.0",
"terser": "4.3.8",
"tslint": "^5.9.1",
"typescript": "3.6.2",
"typescript": "3.7.0-beta",
"vsce": "1.48.0",
"vscode-telemetry-extractor": "^1.5.4",
"xml2js": "^0.4.17"
......
......@@ -2297,10 +2297,10 @@ typed-rest-client@^0.9.0:
tunnel "0.0.4"
underscore "1.8.3"
typescript@3.6.2:
version "3.6.2"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.6.2.tgz#105b0f1934119dde543ac8eb71af3a91009efe54"
integrity sha512-lmQ4L+J6mnu3xweP8+rOrUwzmN+MRAj7TgtJtDaXE5PMyX2kCrklhg3rvOsOIfNeAWMQWO2F1GPc1kMD2vLAfw==
typescript@3.7.0-beta:
version "3.7.0-beta"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.7.0-beta.tgz#4ad556e0eee14b90ecc39261001690e16e5eeba9"
integrity sha512-4jyCX+IQamrPJxgkABPq9xf+hUN+GWHVxoj+oey1TadCPa4snQl1RKwUba+1dyzYCamwlCxKvZQ3TjyWLhMGBA==
typescript@^3.0.1:
version "3.5.3"
......
......@@ -568,7 +568,6 @@ export class ElectronWebviewBasedWebview extends Disposable implements Webview,
public layout(): void {
// noop
}
private readonly _hasFindResult = this._register(new Emitter<boolean>());
......@@ -630,21 +629,15 @@ export class ElectronWebviewBasedWebview extends Disposable implements Webview,
}
public showFind() {
if (this._webviewFindWidget) {
this._webviewFindWidget.reveal();
}
this._webviewFindWidget?.reveal();
}
public hideFind() {
if (this._webviewFindWidget) {
this._webviewFindWidget.hide();
}
this._webviewFindWidget?.hide();
}
public runFindAction(previous: boolean) {
if (this._webviewFindWidget) {
this._webviewFindWidget.find(previous);
}
this._webviewFindWidget?.find(previous);
}
public reload() {
......@@ -652,38 +645,26 @@ export class ElectronWebviewBasedWebview extends Disposable implements Webview,
}
public selectAll() {
if (this._webview) {
this._webview.selectAll();
}
this._webview?.selectAll();
}
public copy() {
if (this._webview) {
this._webview.copy();
}
this._webview?.copy();
}
public paste() {
if (this._webview) {
this._webview.paste();
}
this._webview?.paste();
}
public cut() {
if (this._webview) {
this._webview.cut();
}
this._webview?.cut();
}
public undo() {
if (this._webview) {
this._webview.undo();
}
this._webview?.undo();
}
public redo() {
if (this._webview) {
this._webview.redo();
}
this._webview?.redo();
}
}
......@@ -8515,10 +8515,10 @@ typescript-formatter@7.1.0:
commandpost "^1.0.0"
editorconfig "^0.15.0"
typescript@3.6:
version "3.6.2"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.6.2.tgz#105b0f1934119dde543ac8eb71af3a91009efe54"
integrity sha512-lmQ4L+J6mnu3xweP8+rOrUwzmN+MRAj7TgtJtDaXE5PMyX2kCrklhg3rvOsOIfNeAWMQWO2F1GPc1kMD2vLAfw==
typescript@3.7.0-beta:
version "3.7.0-beta"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.7.0-beta.tgz#4ad556e0eee14b90ecc39261001690e16e5eeba9"
integrity sha512-4jyCX+IQamrPJxgkABPq9xf+hUN+GWHVxoj+oey1TadCPa4snQl1RKwUba+1dyzYCamwlCxKvZQ3TjyWLhMGBA==
typescript@^2.6.2:
version "2.6.2"
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册