mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-27 20:13:32 +01:00
Bump target for build scripts (#165287)
This commit is contained in:
@@ -492,12 +492,17 @@ class FSProvider {
|
||||
}
|
||||
exports.FSProvider = FSProvider;
|
||||
class CacheEntry {
|
||||
sourceFile;
|
||||
mtime;
|
||||
constructor(sourceFile, mtime) {
|
||||
this.sourceFile = sourceFile;
|
||||
this.mtime = mtime;
|
||||
}
|
||||
}
|
||||
class DeclarationResolver {
|
||||
_fsProvider;
|
||||
ts;
|
||||
_sourceFileCache;
|
||||
constructor(_fsProvider) {
|
||||
this._fsProvider = _fsProvider;
|
||||
this.ts = require('typescript');
|
||||
@@ -553,6 +558,10 @@ function run3(resolver) {
|
||||
}
|
||||
exports.run3 = run3;
|
||||
class TypeScriptLanguageServiceHost {
|
||||
_ts;
|
||||
_libs;
|
||||
_files;
|
||||
_compilerOptions;
|
||||
constructor(ts, libs, files, compilerOptions) {
|
||||
this._ts = ts;
|
||||
this._libs = libs;
|
||||
|
||||
Reference in New Issue
Block a user