mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 10:25:42 +01:00
Fix compilation errors
This commit is contained in:
parent
84bdc31efe
commit
f21d9494a2
5 changed files with 8 additions and 8 deletions
|
|
@ -206,10 +206,10 @@ export class DiagnosticsAdapter extends Adapter {
|
|||
}
|
||||
};
|
||||
|
||||
let handle: any;
|
||||
let handle: number;
|
||||
const changeSubscription = model.onDidChangeContent(() => {
|
||||
clearTimeout(handle);
|
||||
handle = setTimeout(maybeValidate, 500);
|
||||
handle = window.setTimeout(maybeValidate, 500);
|
||||
});
|
||||
|
||||
const visibleSubscription = model.onDidChangeAttached(() => {
|
||||
|
|
|
|||
|
|
@ -490,7 +490,7 @@ class LanguageServiceDefaultsImpl implements LanguageServiceDefaults {
|
|||
private _compilerOptions!: CompilerOptions;
|
||||
private _diagnosticsOptions!: DiagnosticsOptions;
|
||||
private _workerOptions!: WorkerOptions;
|
||||
private _onDidExtraLibsChangeTimeout: any;
|
||||
private _onDidExtraLibsChangeTimeout: number;
|
||||
private _inlayHintsOptions!: InlayHintsOptions;
|
||||
|
||||
constructor(
|
||||
|
|
@ -606,7 +606,7 @@ class LanguageServiceDefaultsImpl implements LanguageServiceDefaults {
|
|||
// already scheduled
|
||||
return;
|
||||
}
|
||||
this._onDidExtraLibsChangeTimeout = setTimeout(() => {
|
||||
this._onDidExtraLibsChangeTimeout = window.setTimeout(() => {
|
||||
this._onDidExtraLibsChangeTimeout = -1;
|
||||
this._onDidExtraLibsChange.fire(undefined);
|
||||
}, 0);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue