-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Fix relative paths in wasm backend source maps. Fixes #9837 #9882
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
a213913
c813941
6367083
4c2cf4a
842caaf
acef71d
a9467bd
18ac680
c9a3bd0
bb04bd9
917b74c
3b15d9e
6bdc495
8412ca7
2174057
f2b9909
450097c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -263,7 +263,7 @@ def build_sourcemap(entries, code_section_offset, prefixes, collect_sources): | |
| if column == 0: | ||
| column = 1 | ||
| address = entry['address'] + code_section_offset | ||
| file_name = entry['file'] | ||
| file_name = os.path.relpath(entry['file']) | ||
|
||
| source_name = prefixes.sources.resolve(file_name) | ||
| if source_name not in sources_map: | ||
| source_id = len(sources) | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.