Closed
Bug 701620
Opened 14 years ago
Closed 14 years ago
Various parse node kind disambiguations
Categories
(Core :: JavaScript Engine, defect)
Core
JavaScript Engine
Tracking
()
RESOLVED
FIXED
mozilla11
People
(Reporter: Waldo, Assigned: Waldo)
References
()
Details
Attachments
(5 files)
2.41 KB,
patch
|
jorendorff
:
review+
|
Details | Diff | Splinter Review |
7.05 KB,
patch
|
jorendorff
:
review+
|
Details | Diff | Splinter Review |
5.00 KB,
patch
|
jorendorff
:
review+
|
Details | Diff | Splinter Review |
3.14 KB,
patch
|
jorendorff
:
review+
|
Details | Diff | Splinter Review |
17.99 KB,
patch
|
jorendorff
:
review+
|
Details | Diff | Splinter Review |
Some parse node kinds have split personalities depending on context. It would be conceptually simpler to just have distinct kinds in these cases.
Assignee | ||
Comment 1•14 years ago
|
||
Attachment #573731 -
Flags: review?(cdleary)
Assignee | ||
Comment 2•14 years ago
|
||
Attachment #573732 -
Flags: review?(cdleary)
Assignee | ||
Comment 3•14 years ago
|
||
There's at least an argument that in [x for (y in z)], the for node shouldn't be PNK_FORIN but should be different. I haven't quite seen value in doing it, so for now there is this reuse.
Attachment #573733 -
Flags: review?(cdleary)
Assignee | ||
Comment 4•14 years ago
|
||
I think of them as do-while loops, not do-loops, so I find PNK_DOWHILE more readable than PNK_DO. No code change, just a name change.
Attachment #573734 -
Flags: review?(cdleary)
Assignee | ||
Comment 5•14 years ago
|
||
Attachment #573951 -
Flags: review?(cdleary)
Assignee | ||
Updated•14 years ago
|
Attachment #573731 -
Flags: review?(cdleary) → review?(jorendorff)
Assignee | ||
Updated•14 years ago
|
Attachment #573732 -
Flags: review?(cdleary) → review?(jorendorff)
Assignee | ||
Updated•14 years ago
|
Attachment #573733 -
Flags: review?(cdleary) → review?(jorendorff)
Assignee | ||
Updated•14 years ago
|
Attachment #573734 -
Flags: review?(cdleary) → review?(jorendorff)
Assignee | ||
Updated•14 years ago
|
Attachment #573951 -
Flags: review?(cdleary) → review?(jorendorff)
Updated•14 years ago
|
Attachment #573731 -
Flags: review?(jorendorff) → review+
Updated•14 years ago
|
Attachment #573732 -
Flags: review?(jorendorff) → review+
Updated•14 years ago
|
Attachment #573733 -
Flags: review?(jorendorff) → review+
Updated•14 years ago
|
Attachment #573734 -
Flags: review?(jorendorff) → review+
Comment 6•14 years ago
|
||
Comment on attachment 573951 [details] [diff] [review]
Split PNK_LC into PNK_STATEMENTLIST and PNK_XMLCURLYEXPR
>+ case PNK_XMLCURLYEXPR:
>+#if JS_HAS_XML_SUPPORT
>+ JS_ASSERT(pn->isArity(PN_UNARY));
>+ if (!EmitTree(cx, bce, pn->pn_kid))
>+ return JS_FALSE;
>+ if (Emit1(cx, bce, pn->getOp()) < 0)
>+ return JS_FALSE;
>+#else
>+ JS_NOT_REACHED("XML curly expression without XML support");
>+#endif
>+ break;
Can you just #if JS_HAS_XML_SUPPORT around the whole case, including the break?
All this is great stuff and long overdue.
If you feel like renaming PNK_{RC,LB,RB,LP,RP} please go for it. They are totally cryptic.
Attachment #573951 -
Flags: review?(jorendorff) → review+
Assignee | ||
Comment 7•14 years ago
|
||
https://hg.mozilla.org/integration/mozilla-inbound/rev/9e33bed54f9a
https://hg.mozilla.org/integration/mozilla-inbound/rev/6ae5203fe3e1
https://hg.mozilla.org/integration/mozilla-inbound/rev/1030be78cb51
https://hg.mozilla.org/integration/mozilla-inbound/rev/c7099e04ec39
https://hg.mozilla.org/integration/mozilla-inbound/rev/db3280d6199d
I do indeed feel like it. But it's not as simple as that, yet, because of kind overloading at least for PNK_RB/PNK_RC. I don't know about the others. But I do indeed plan to get to it, over time. :-)
Target Milestone: --- → mozilla11
Comment 8•14 years ago
|
||
https://hg.mozilla.org/mozilla-central/rev/9e33bed54f9a
https://hg.mozilla.org/mozilla-central/rev/6ae5203fe3e1
https://hg.mozilla.org/mozilla-central/rev/1030be78cb51
https://hg.mozilla.org/mozilla-central/rev/c7099e04ec39
https://hg.mozilla.org/mozilla-central/rev/db3280d6199d
Status: ASSIGNED → RESOLVED
Closed: 14 years ago
Resolution: --- → FIXED
Comment 9•14 years ago
|
||
Let's test your knowledge, and see what you've learned so far... What color are the parse node kinds? PNNNNNNK!
Ahem. Sorry.
Assignee | ||
Comment 10•14 years ago
|
||
/me smiles
You need to log in
before you can comment on or make changes to this bug.
Description
•