Skip to content

Commit d1a202d

Browse files
committed
Update LKG
1 parent a28c533 commit d1a202d

10 files changed

+48
-19
lines changed

debug.log

-8
This file was deleted.

lib/tsc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ var ts;
142142
})(ts || (ts = {}));
143143
var ts;
144144
(function (ts) {
145-
ts.version = "2.3.1";
145+
ts.version = "2.3.2";
146146
})(ts || (ts = {}));
147147
(function (ts) {
148148
ts.collator = typeof Intl === "object" && typeof Intl.Collator === "function" ? new Intl.Collator(undefined, { usage: "sort", sensitivity: "accent" }) : undefined;

lib/tsserver.js

+20-2
Original file line numberDiff line numberDiff line change
@@ -1102,7 +1102,7 @@ var ts;
11021102
})(ts || (ts = {}));
11031103
var ts;
11041104
(function (ts) {
1105-
ts.version = "2.3.1";
1105+
ts.version = "2.3.2";
11061106
})(ts || (ts = {}));
11071107
(function (ts) {
11081108
var Ternary;
@@ -76291,7 +76291,7 @@ var ts;
7629176291
return MultistepOperation;
7629276292
}());
7629376293
var Session = (function () {
76294-
function Session(opts) {
76294+
function Session(optsOrArg) {
7629576295
var _this = this;
7629676296
this.changeSeq = 0;
7629776297
this.handlers = ts.createMapFromTemplate((_a = {},
@@ -76532,6 +76532,24 @@ var ts;
7653276532
return _this.requiredResponse(_this.getSupportedCodeFixes());
7653376533
},
7653476534
_a));
76535+
var opts;
76536+
if (arguments.length === 1) {
76537+
opts = optsOrArg;
76538+
}
76539+
else {
76540+
opts = {
76541+
host: arguments[0],
76542+
cancellationToken: arguments[1],
76543+
useSingleInferredProject: arguments[2],
76544+
typingsInstaller: arguments[3],
76545+
byteLength: arguments[4],
76546+
hrtime: arguments[5],
76547+
logger: arguments[6],
76548+
canUseEvents: arguments[7],
76549+
eventHandler: arguments[8],
76550+
throttleWaitMilliseconds: arguments[9]
76551+
};
76552+
}
7653576553
this.host = opts.host;
7653676554
this.cancellationToken = opts.cancellationToken;
7653776555
this.typingsInstaller = opts.typingsInstaller;

lib/tsserverlibrary.d.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -2271,7 +2271,7 @@ declare namespace ts {
22712271
}
22722272
}
22732273
declare namespace ts {
2274-
const version = "2.3.1";
2274+
const version = "2.3.2";
22752275
}
22762276
declare function setTimeout(handler: (...args: any[]) => void, timeout: number): any;
22772277
declare function clearTimeout(handle: any): void;
@@ -4483,6 +4483,7 @@ declare namespace ts.server {
44834483
protected logger: Logger;
44844484
private canUseEvents;
44854485
constructor(opts: SessionOptions);
4486+
constructor(host: ServerHost, cancellationToken: ServerCancellationToken, useSingleInferredProject: boolean, typingsInstaller: ITypingsInstaller, byteLength: (buf: string, encoding?: string) => number, hrtime: (start?: number[]) => number[], logger: server.Logger, canUseEvents: boolean, eventHandler?: ProjectServiceEventHandler, throttleWaitMilliseconds?: number);
44864487
private sendRequestCompletedEvent(requestId);
44874488
private defaultEventHandler(event);
44884489
logError(err: Error, cmd: string): void;

lib/tsserverlibrary.js

+20-2
Original file line numberDiff line numberDiff line change
@@ -1102,7 +1102,7 @@ var ts;
11021102
})(ts || (ts = {}));
11031103
var ts;
11041104
(function (ts) {
1105-
ts.version = "2.3.1";
1105+
ts.version = "2.3.2";
11061106
})(ts || (ts = {}));
11071107
(function (ts) {
11081108
var Ternary;
@@ -72610,7 +72610,7 @@ var ts;
7261072610
return MultistepOperation;
7261172611
}());
7261272612
var Session = (function () {
72613-
function Session(opts) {
72613+
function Session(optsOrArg) {
7261472614
var _this = this;
7261572615
this.changeSeq = 0;
7261672616
this.handlers = ts.createMapFromTemplate((_a = {},
@@ -72851,6 +72851,24 @@ var ts;
7285172851
return _this.requiredResponse(_this.getSupportedCodeFixes());
7285272852
},
7285372853
_a));
72854+
var opts;
72855+
if (arguments.length === 1) {
72856+
opts = optsOrArg;
72857+
}
72858+
else {
72859+
opts = {
72860+
host: arguments[0],
72861+
cancellationToken: arguments[1],
72862+
useSingleInferredProject: arguments[2],
72863+
typingsInstaller: arguments[3],
72864+
byteLength: arguments[4],
72865+
hrtime: arguments[5],
72866+
logger: arguments[6],
72867+
canUseEvents: arguments[7],
72868+
eventHandler: arguments[8],
72869+
throttleWaitMilliseconds: arguments[9]
72870+
};
72871+
}
7285472872
this.host = opts.host;
7285572873
this.cancellationToken = opts.cancellationToken;
7285672874
this.typingsInstaller = opts.typingsInstaller;

lib/typescript.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2515,7 +2515,7 @@ declare namespace ts {
25152515
}
25162516
declare namespace ts {
25172517
/** The version of the TypeScript compiler release */
2518-
const version = "2.3.1";
2518+
const version = "2.3.2";
25192519
}
25202520
declare function setTimeout(handler: (...args: any[]) => void, timeout: number): any;
25212521
declare function clearTimeout(handle: any): void;

lib/typescript.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1256,7 +1256,7 @@ var ts;
12561256
var ts;
12571257
(function (ts) {
12581258
/** The version of the TypeScript compiler release */
1259-
ts.version = "2.3.1";
1259+
ts.version = "2.3.2";
12601260
})(ts || (ts = {}));
12611261
/* @internal */
12621262
(function (ts) {

lib/typescriptServices.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2515,7 +2515,7 @@ declare namespace ts {
25152515
}
25162516
declare namespace ts {
25172517
/** The version of the TypeScript compiler release */
2518-
const version = "2.3.1";
2518+
const version = "2.3.2";
25192519
}
25202520
declare function setTimeout(handler: (...args: any[]) => void, timeout: number): any;
25212521
declare function clearTimeout(handle: any): void;

lib/typescriptServices.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1256,7 +1256,7 @@ var ts;
12561256
var ts;
12571257
(function (ts) {
12581258
/** The version of the TypeScript compiler release */
1259-
ts.version = "2.3.1";
1259+
ts.version = "2.3.2";
12601260
})(ts || (ts = {}));
12611261
/* @internal */
12621262
(function (ts) {

lib/typingsInstaller.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ var ts;
152152
})(ts || (ts = {}));
153153
var ts;
154154
(function (ts) {
155-
ts.version = "2.3.1";
155+
ts.version = "2.3.2";
156156
})(ts || (ts = {}));
157157
(function (ts) {
158158
ts.collator = typeof Intl === "object" && typeof Intl.Collator === "function" ? new Intl.Collator(undefined, { usage: "sort", sensitivity: "accent" }) : undefined;

0 commit comments

Comments
 (0)