summaryrefslogtreecommitdiff
path: root/test/binaryen.js/sourcemap.js.txt
Commit message (Collapse)AuthorAgeFilesLines
* Source map fixes (#6550)Jérôme Vouillon2024-05-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | * Keep debug locations at function start The `fn_prolog_epilog.debugInfo` test is failing otherwise, since there was debug information associated to the nop instruction at the beginning of the function. * Do not clear the debug information when reaching the end of the source map The last segment should extend to the end of the function. * Propagate debug location from the function prolog to its first instruction * Fix printing of epilogue location The text parser no longer propagates locations to the epilogue, so we should always print the location if there is one. * Fix debug location smearing The debug location of the last instruction should not smear into the function epilogue, and a debug location from a previous function should not smear into the prologue of the current function.
* Fix source map entries offset when LEB is compressed. (#1628)Yury Delendik2018-07-251-1/+1
|
* Sourcemap support for Binaryen C/JS (#1392)Daniel Wirtz2018-01-291-0/+8
* Initial source map support for C/JS * Also test getDebugInfoFileName