Skip to content

Commit

Permalink
Update Source.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
TheGreatSageEqualToHeaven authored Mar 27, 2024
1 parent ef03e26 commit 9617b0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source.lua
Original file line number Diff line number Diff line change
Expand Up @@ -445,11 +445,11 @@ local function luau_deserialize(bytecode, luau_settings)
table_insert(abslineinfo, lastline)
end

instructionlineinfo = {}
instructionlineinfo = table_create(sizecode)

for i = 1, sizecode do
--// p->abslineinfo[pc >> p->linegaplog2] + p->lineinfo[pc];
instructionlineinfo[i] = abslineinfo[bit32_rshift(i, linegaplog2) + 1] + lineinfo[i]
table_insert(instructionlineinfo, abslineinfo[bit32_rshift(i, linegaplog2) + 1] + lineinfo[i])
end
end

Expand Down

0 comments on commit 9617b0b

Please sign in to comment.