Skip to content

Commit bed79cc

Browse files
Update LKG
1 parent b99761a commit bed79cc

8 files changed

Lines changed: 10077 additions & 5078 deletions

bin/tsc.js

Lines changed: 6729 additions & 2075 deletions
Large diffs are not rendered by default.

bin/tsserver.js

Lines changed: 1114 additions & 999 deletions
Large diffs are not rendered by default.

bin/typescript.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1443,15 +1443,15 @@ declare module "typescript" {
14431443
}
14441444
declare module "typescript" {
14451445
/** The version of the TypeScript compiler release */
1446-
var version: string;
1446+
let version: string;
14471447
function createCompilerHost(options: CompilerOptions): CompilerHost;
14481448
function getPreEmitDiagnostics(program: Program): Diagnostic[];
14491449
function flattenDiagnosticMessageText(messageText: string | DiagnosticMessageChain, newLine: string): string;
14501450
function createProgram(rootNames: string[], options: CompilerOptions, host?: CompilerHost): Program;
14511451
}
14521452
declare module "typescript" {
14531453
/** The version of the language service API */
1454-
var servicesVersion: string;
1454+
let servicesVersion: string;
14551455
interface Node {
14561456
getSourceFile(): SourceFile;
14571457
getChildCount(sourceFile?: SourceFile): number;
@@ -1938,7 +1938,7 @@ declare module "typescript" {
19381938
throwIfCancellationRequested(): void;
19391939
}
19401940
function createLanguageServiceSourceFile(fileName: string, scriptSnapshot: IScriptSnapshot, scriptTarget: ScriptTarget, version: string, setNodeParents: boolean): SourceFile;
1941-
var disableIncrementalParsing: boolean;
1941+
let disableIncrementalParsing: boolean;
19421942
function updateLanguageServiceSourceFile(sourceFile: SourceFile, scriptSnapshot: IScriptSnapshot, version: string, textChangeRange: TextChangeRange, aggressiveChecks?: boolean): SourceFile;
19431943
function createDocumentRegistry(): DocumentRegistry;
19441944
function preProcessFile(sourceText: string, readImportFiles?: boolean): PreProcessedFileInfo;

bin/typescript.js

Lines changed: 1109 additions & 994 deletions
Large diffs are not rendered by default.

bin/typescriptServices.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1443,15 +1443,15 @@ declare module ts {
14431443
}
14441444
declare module ts {
14451445
/** The version of the TypeScript compiler release */
1446-
var version: string;
1446+
let version: string;
14471447
function createCompilerHost(options: CompilerOptions): CompilerHost;
14481448
function getPreEmitDiagnostics(program: Program): Diagnostic[];
14491449
function flattenDiagnosticMessageText(messageText: string | DiagnosticMessageChain, newLine: string): string;
14501450
function createProgram(rootNames: string[], options: CompilerOptions, host?: CompilerHost): Program;
14511451
}
14521452
declare module ts {
14531453
/** The version of the language service API */
1454-
var servicesVersion: string;
1454+
let servicesVersion: string;
14551455
interface Node {
14561456
getSourceFile(): SourceFile;
14571457
getChildCount(sourceFile?: SourceFile): number;
@@ -1938,7 +1938,7 @@ declare module ts {
19381938
throwIfCancellationRequested(): void;
19391939
}
19401940
function createLanguageServiceSourceFile(fileName: string, scriptSnapshot: IScriptSnapshot, scriptTarget: ScriptTarget, version: string, setNodeParents: boolean): SourceFile;
1941-
var disableIncrementalParsing: boolean;
1941+
let disableIncrementalParsing: boolean;
19421942
function updateLanguageServiceSourceFile(sourceFile: SourceFile, scriptSnapshot: IScriptSnapshot, version: string, textChangeRange: TextChangeRange, aggressiveChecks?: boolean): SourceFile;
19431943
function createDocumentRegistry(): DocumentRegistry;
19441944
function preProcessFile(sourceText: string, readImportFiles?: boolean): PreProcessedFileInfo;

0 commit comments

Comments
 (0)