Skip to content

Commit bc7ad5d

Browse files
committed
Use a faster key, this one is twice as fast as the previous
1 parent 2c3c9c8 commit bc7ad5d

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

src/compiler/emitter.ts

+8-3
Original file line numberDiff line numberDiff line change
@@ -1351,19 +1351,24 @@ export type ReusablePrinterOptions = Pick<PrinterOptions, "removeComments" | "ne
13511351

13521352
/** @internal */
13531353
export function createOrReusePrinter(o: ReusablePrinterOptions = {}) {
1354-
const key = `${keyBool(o.removeComments)}|${keyBool(o.neverAsciiEscape)}|${keyBool(o.omitTrailingSemicolon)}|${keyNum(o.module)}|${keyNum(o.target)}|${keyNum(o.newLine)}`;
1354+
const key = keyBool(o.removeComments)
1355+
+ keyBool(o.neverAsciiEscape)
1356+
+ keyBool(o.omitTrailingSemicolon)
1357+
+ keyNum(o.module)
1358+
+ keyNum(o.target)
1359+
+ keyNum(o.newLine);
13551360
let printer = printerCache.get(key);
13561361
if (!printer) {
13571362
printerCache.set(key, printer = createPrinter(o));
13581363
}
13591364
return printer;
13601365

13611366
function keyBool(value: boolean | undefined): string {
1362-
return value === undefined ? "u" : value ? "1" : "0";
1367+
return value === undefined ? "u," : value ? "1," : "0,";
13631368
}
13641369

13651370
function keyNum(value: number | undefined): string {
1366-
return value === undefined ? "u" : `${value}`;
1371+
return value === undefined ? "u," : `${value},`;
13671372
}
13681373
}
13691374

0 commit comments

Comments
 (0)