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
Compile or minify some code that can rename and remap names (you can check this since there should be a non-empty "names" array in the sourcemap). Terser is one tool that works, here's an example of a command for it.
Debug it. You should be able to use renamed variables by the original name in:
The variables view (it should show variables' original name), including the "copy" context menu action
The Watch view
The Debug Console/repl
There are some caveats:
If you test with a minifier, these will often reuse renames between scope. We don't deal with this.
This is not supported in breakpoint conditions or logpoints (since we don't statically know what scope they will be hit in until it happens)
The text was updated successfully, but these errors were encountered:
Refs: #12066
Complexity: 3
Create Issue
Identifiers in JavaScript can be renamed during compilation. We now support dealing with these renames, provided the tool emits them correctly:
There are some caveats:
The text was updated successfully, but these errors were encountered: