mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-15 20:25:23 -06:00
Update LKG
This commit is contained in:
parent
2049684154
commit
17a8024eb7
14
bin/tsc.js
14
bin/tsc.js
@ -84,9 +84,9 @@ var ts;
|
||||
if (array) {
|
||||
result = [];
|
||||
for (var _i = 0; _i < array.length; _i++) {
|
||||
var item_1 = array[_i];
|
||||
if (f(item_1)) {
|
||||
result.push(item_1);
|
||||
var item = array[_i];
|
||||
if (f(item)) {
|
||||
result.push(item);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -118,9 +118,9 @@ var ts;
|
||||
if (array) {
|
||||
result = [];
|
||||
for (var _i = 0; _i < array.length; _i++) {
|
||||
var item_2 = array[_i];
|
||||
if (!contains(result, item_2)) {
|
||||
result.push(item_2);
|
||||
var item = array[_i];
|
||||
if (!contains(result, item)) {
|
||||
result.push(item);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -24299,7 +24299,7 @@ var ts;
|
||||
ts.emitTime = 0;
|
||||
ts.ioReadTime = 0;
|
||||
ts.ioWriteTime = 0;
|
||||
ts.version = "1.5.0-alpha";
|
||||
ts.version = "1.5.0-beta";
|
||||
function findConfigFile(searchPath) {
|
||||
var fileName = "tsconfig.json";
|
||||
while (true) {
|
||||
|
||||
@ -24642,7 +24642,7 @@ var ts;
|
||||
ts.emitTime = 0;
|
||||
ts.ioReadTime = 0;
|
||||
ts.ioWriteTime = 0;
|
||||
ts.version = "1.5.0-alpha";
|
||||
ts.version = "1.5.0-beta";
|
||||
function findConfigFile(searchPath) {
|
||||
var fileName = "tsconfig.json";
|
||||
while (true) {
|
||||
|
||||
@ -28710,7 +28710,7 @@ var ts;
|
||||
/* @internal */ ts.ioReadTime = 0;
|
||||
/* @internal */ ts.ioWriteTime = 0;
|
||||
/** The version of the TypeScript compiler release */
|
||||
ts.version = "1.5.0-alpha";
|
||||
ts.version = "1.5.0-beta";
|
||||
function findConfigFile(searchPath) {
|
||||
var fileName = "tsconfig.json";
|
||||
while (true) {
|
||||
|
||||
@ -28710,7 +28710,7 @@ var ts;
|
||||
/* @internal */ ts.ioReadTime = 0;
|
||||
/* @internal */ ts.ioWriteTime = 0;
|
||||
/** The version of the TypeScript compiler release */
|
||||
ts.version = "1.5.0-alpha";
|
||||
ts.version = "1.5.0-beta";
|
||||
function findConfigFile(searchPath) {
|
||||
var fileName = "tsconfig.json";
|
||||
while (true) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user