Skip to content

Commit 5c47c6a

Browse files
Update LKG.
1 parent 87547ae commit 5c47c6a

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

lib/tsc.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -23366,10 +23366,10 @@ var esDecorateHelper = {
2336623366
if (result === null || typeof result !== "object") throw new TypeError("Object expected");
2336723367
if (_ = accept(result.get)) descriptor.get = _;
2336823368
if (_ = accept(result.set)) descriptor.set = _;
23369-
if (_ = accept(result.init)) initializers.push(_);
23369+
if (_ = accept(result.init)) initializers.unshift(_);
2337023370
}
2337123371
else if (_ = accept(result)) {
23372-
if (kind === "field") initializers.push(_);
23372+
if (kind === "field") initializers.unshift(_);
2337323373
else descriptor[key] = _;
2337423374
}
2337523375
}

lib/tsserver.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -27617,10 +27617,10 @@ var esDecorateHelper = {
2761727617
if (result === null || typeof result !== "object") throw new TypeError("Object expected");
2761827618
if (_ = accept(result.get)) descriptor.get = _;
2761927619
if (_ = accept(result.set)) descriptor.set = _;
27620-
if (_ = accept(result.init)) initializers.push(_);
27620+
if (_ = accept(result.init)) initializers.unshift(_);
2762127621
}
2762227622
else if (_ = accept(result)) {
27623-
if (kind === "field") initializers.push(_);
27623+
if (kind === "field") initializers.unshift(_);
2762427624
else descriptor[key] = _;
2762527625
}
2762627626
}

lib/tsserverlibrary.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -25516,10 +25516,10 @@ ${lanes.join("\n")}
2551625516
if (result === null || typeof result !== "object") throw new TypeError("Object expected");
2551725517
if (_ = accept(result.get)) descriptor.get = _;
2551825518
if (_ = accept(result.set)) descriptor.set = _;
25519-
if (_ = accept(result.init)) initializers.push(_);
25519+
if (_ = accept(result.init)) initializers.unshift(_);
2552025520
}
2552125521
else if (_ = accept(result)) {
25522-
if (kind === "field") initializers.push(_);
25522+
if (kind === "field") initializers.unshift(_);
2552325523
else descriptor[key] = _;
2552425524
}
2552525525
}

lib/typescript.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -25516,10 +25516,10 @@ ${lanes.join("\n")}
2551625516
if (result === null || typeof result !== "object") throw new TypeError("Object expected");
2551725517
if (_ = accept(result.get)) descriptor.get = _;
2551825518
if (_ = accept(result.set)) descriptor.set = _;
25519-
if (_ = accept(result.init)) initializers.push(_);
25519+
if (_ = accept(result.init)) initializers.unshift(_);
2552025520
}
2552125521
else if (_ = accept(result)) {
25522-
if (kind === "field") initializers.push(_);
25522+
if (kind === "field") initializers.unshift(_);
2552325523
else descriptor[key] = _;
2552425524
}
2552525525
}

0 commit comments

Comments
 (0)