You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 5, 2022. It is now read-only.
When debugging with jerryscript-debugger-ts project, since we concatenate all sources into one big file for our JS "modules", the debugger shows the one big source file. By using a source map, we could retain the original source format by mapping lines in the "compiled" source back to the original sources.
This would require an extra step of map generation at the time of concatenation, and then then the debugger proxy would have to be pointed to the original sources and this map to be able to piece together all the info needed.
This is mostly a feature needed in jerryscript-debugger-ts so we should really open an issue there, but part of it is ZJS-specific and would need to be handled here.
The text was updated successfully, but these errors were encountered:
When debugging with jerryscript-debugger-ts project, since we concatenate all sources into one big file for our JS "modules", the debugger shows the one big source file. By using a source map, we could retain the original source format by mapping lines in the "compiled" source back to the original sources.
This would require an extra step of map generation at the time of concatenation, and then then the debugger proxy would have to be pointed to the original sources and this map to be able to piece together all the info needed.
This is mostly a feature needed in jerryscript-debugger-ts so we should really open an issue there, but part of it is ZJS-specific and would need to be handled here.
The text was updated successfully, but these errors were encountered: