-
Notifications
You must be signed in to change notification settings - Fork 30
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
Local names incorrect #53
Comments
I can confirm this. It is caused by the way ClojureScript generates Javascript code and how default DevTools select local variables for display. I believe if you break the code at the same spot in internal DevTools (without Dirac installed), you will experience a similar thing. I haven't tried to counter it yet because I don't fully understand the mechanism. The only thing Dirac does is that it tries to sort properties and put null and undefined values at the end of list. This way it mitigates the problem a bit without losing any information. But I don't see this feature in your screenshots. Have you disabled "Enable clustered locals" in Dirac DevTools extension preferences? |
I think I indeed disabled "Enable clustered locals" when taking the screenshot. However, before doing so, I had deliberately played with this and the other preferences, such as "Enabled friendly locals", but without any positive result...
… On 17 Jan 2017, at 21:25, Antonin Hildebrand ***@***.***> wrote:
I can confirm this. It is caused by the way ClojureScript generates Javascript code and how default DevTools select local variables for display. I believe if you break the code at the same spot in internal DevTools (without Dirac installed), you will experience a similar thing.
I haven't tried to counter it yet because I don't fully understand the mechanism. The only thing Dirac does is that it tries to sort properties and put non-null and non-undefined values first. This way it mitigates the problem a bit without losing any information.
But I don't see this feature in your screenshots. Have you disabled "Enable clustered locals" in Dirac DevTools extension preferences?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub <#53 (comment)>, or mute the thread <https://github.com/notifications/unsubscribe-auth/ABztcbFHoeKpzWcAStytaxG_3TR_06svks5rTSPHgaJpZM4Llbuf>.
|
If I remember well, ClojureScript generated Javascript similar to this one: if (condition) {
var v = exp1;
...
// breakpoint here
} else {
var v = exp2;
...
} There are two variables named "v", you stopped in true branch, but DevTools sees all branches. Of course this gets worse when nested. I believe this will have to be solved on DevTools side, to display only locals from relevant code branches. |
Investigated this issue a bit today. Scratch my previous comment. Javascript scope variables work as expected. The problem is in case with source maps. DevTools tries to map real variable names to original names. Unfortunately the implementation does not expect that multiple distinct variables could potentially map to the same name in original sources. I was able to reproduce it on this minimal repro case: (let [x 1]
(let [x 2]
(js-debugger))) Which generates javascript similar to this: var x = (1);
var x__$1 = (2);
debugger; Both I have identified multiple places where they use some intermediate data structure for reverse-mapping names and it does not expect multiple variables with the same name. This confuses lookups in code relying on those mappings.
@aslushnikov I believe commit decf4d4 needs a review. Secondary problem is in the code producing source code decorations:
I think this will deserve a ticket upstream, because this needs to be fixed in general. |
@darwin thank you for the investigation. Would you mind filing bugs on the crbug.com (and posting links here so that they're triaged quickly)? If you have any time for the CL to address the issue, I'll be happy to review |
@aslushnikov sure, will do (probably at the end of this week). |
I was able to implement a fix but it will need deeper changes to resolve all remaining issues. New observations:
Original ClojureScript: (defn breakpoint-demo [count]
(let [x 1]
(let [y 2]
(let [x 3
z #(println x)]
(js-debugger)))) Produces: var x = (1);
var y = (2);
var x__$1 = (3);
var z = ((function (x__$1,y,x){
return (function (){
return cljs.core.println.call(null,x__$1);
});})(x__$1,y,x)) Compiled variable names Mapping from compiled to original names should be:
This means that we have to care about general case of duplicit compiled names pointing arbitrarily to (potentially) duplicit original names. Any code using plain names to uniquely identify something is potentially wrong, both when mapping compiled names to original ones and reverse. Implementation notes:
|
the code was probably correct, I was just haunted by paranormal events issue #53
Some nasty source maps generated by ClojureScript really use negative indices. issue #53
The changes in 1.1.2 release were not enough to fix everything :-( Found pretty nasty bug in adba577. |
Reported upstream as ticket 687772: |
A very big thank you for this investigation (and for your product in general!) |
@danielcompton Could you confirm this in Dirac? Dirac has a patch for this issue. |
This is fishy. Are you sure you really ran the source-maps-enabled case under Dirac? |
Please note that this feature is broken in latest ClojureScript 1.10.439 due to CLJS-2993. You might want to stay on 1.10.339 which is last good version. |
It has been causing me headaches when merging official changes. I defer to devtools devs to fix this on their side. binaryage/dirac#53
Hi,
In the attached screenshot, you can see that the local "nodeleaf-id" is shown several times in the list at the right side. Only one of those instance is correct (the one having value 538) -- the other values correspond to other locals (e.g., :node-types/tree corresponds to local "rep-tree|fold?" and value null corresponds to "has-children?"). When I select the text of the local at the left side, the current value is correctly displayed in the popup window that appears.
Using Chrome 57.0.2984.0, Dirac 1.0.0, and I tried to start with a fresh Chrome folder with no extensions installed other than Dirac.
The text was updated successfully, but these errors were encountered: