1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-21 13:00:36 -05:00
This commit is contained in:
Marvin Hagemeister 2024-12-09 10:10:45 +01:00
parent ccf7009dfd
commit 19baadf319

View file

@ -2052,8 +2052,7 @@ function createAstContext(buf) {
const strTable = new Map();
let i = 0;
const stringCount = (buf[0] << 24) + (buf[1] << 16) + (buf[2] << 8) +
buf[3];
const stringCount = readU32(buf, 0);
i += 4;
let id = 0;