ladybird/Tests/LibJS/Bytecode/expected/eval-same-function.txt
Andreas Kling 21cbfb3cb1 LibJS: Drop source ranges from bytecode source maps
Store source map locations as bytecode offset, line, and column.
Runtime consumers only emit the start line and column, so source end
positions and source text offsets do not need to be carried through
Executable source maps, bytecode cache serialization, or the Rust FFI.

Keep SourceCode's internal position cache able to track source text
offsets so callers can still translate source offsets to line and
column pairs when needed. Hash dump-bytecode IDs from the name, first
source position, and bytecode size instead of source slices that need
end offsets.

Bump the bytecode cache format version for the slimmer serialized
source map entry shape.
2026-05-14 09:41:03 +02:00

39 lines
958 B
Text

$d36729be eval-same-function.js:10:1
Registers: 7
Blocks: 1
Constants:
[0] = Undefined
block0:
[ 0] GetGlobal dst:reg6, `foo`
[ 18] Call dst:reg5, callee:reg6, this_value:Undefined, foo
[ 38] End value:reg5
foo$c25bdd1c eval-same-function.js:6:9
Registers: 8
Blocks: 1
Constants:
[0] = String("var x = 1")
[1] = Undefined
[2] = Int32(42)
block0:
[ 0] CreateArguments is_immutable:false
[ 10] GetCalleeAndThisFromEnvironment callee:reg6, this_value:reg7, `eval`
[ 28] CallDirectEval dst:reg5, callee:reg6, this_value:reg7, eval, arguments:[String("var x = 1")]
[ 50] GetBinding dst:reg6, `Number`
[ 68] CallConstruct dst:reg5, callee:reg6, Number, arguments:[Int32(42)]
[ 88] Return value:reg5
eval$6295ffeb line 1, column 1
Registers: 5
Blocks: 1
Constants:
[0] = Int32(1)
[1] = Undefined
block0:
[ 0] SetLexicalBinding `x`, src:Int32(1)
[ 18] End value:Undefined