-
Notifications
You must be signed in to change notification settings - Fork 105
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
[WIP] feat: Add native SourceMap support #819
Open
bartlomieju
wants to merge
31
commits into
denoland:main
Choose a base branch
from
bartlomieju:source_map_getter
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+442
−50
Open
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
3d8c9c8
feat: Add native SourceMap support
bartlomieju 2905e0d
update comment
bartlomieju 23cdef9
prototype source mapping url being non-base64 url
bartlomieju ec8e4f1
start moving source map loading to ModuleLoader
bartlomieju 333c579
Merge branch 'main' into source_map_getter
bartlomieju 72ffd9d
Merge branch 'main' into source_map_getter
bartlomieju 588dc8a
Merge branch 'main' into source_map_getter
bartlomieju a78caa2
Merge branch 'main' into source_map_getter
bartlomieju a46cd55
fixes after merge
bartlomieju 0a2821c
rename
bartlomieju 6fc5d1d
lint
bartlomieju 0166243
use ModuleCode static for ext_source_maps
bartlomieju 6bfb77b
more cleanup
bartlomieju 224bcf2
remove a TODO comment
bartlomieju 01bf21c
Merge branch 'source_map_perf' into source_map_getter
bartlomieju 7ff9928
remove setting up `ModuleMap` for `SourceMapper`
bartlomieju 40aff1a
simplify SourceMapper::get_source_line
bartlomieju 84d6c3f
lint
bartlomieju 7a380af
Merge branch 'main' into source_map_getter
bartlomieju 85a9634
fix after merge
bartlomieju b0bfb5c
simplify error
bartlomieju a6c6f76
self-review
bartlomieju 126eb6b
add a TODO
bartlomieju 4e4036d
remove base64
bartlomieju b253371
wip - dcore, can't print source_line in JsError
bartlomieju a503d80
add transpiler api
bartlomieju cc573b4
wip upgrade
bartlomieju f01fbe8
Merge branch 'main' into source_map_getter
bartlomieju 2d4fdb9
Merge remote-tracking branch 'upstream/main' into source_map_getter
bartlomieju 1ccf6c6
Merge branch 'main' into source_map_getter
bartlomieju 0795341
Merge remote-tracking branch 'upstream/main' into source_map_getter
bartlomieju File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
"use strict"; | ||
|
||
throw new Error("Hello world!"); | ||
//# sourceMappingURL=bar.js.map | ||
|
||
asd; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Verify this in a separate PR. We support source maps for
ext:
modules so most likely this is not needed