mirror of
https://github.com/denoland/deno.git
synced 2025-01-21 13:00:36 -05:00
WIP
This commit is contained in:
parent
ccf7009dfd
commit
19baadf319
1 changed files with 1 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue