Closed
Bug 402930
Opened 18 years ago
Closed 18 years ago
Implement compound assignment in esc
Categories
(Tamarin Graveyard :: Self-hosting compiler (ESC), defect)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: tierney, Unassigned)
Details
Attachments
(1 file)
|
4.20 KB,
patch
|
jodyer
:
review+
|
Details | Diff | Splinter Review |
Adds support for compound assignment to esc's parser. Parser just expands the expression, e.g. s+=3 -> s=s+3
Attachment #287749 -
Flags: review?(jodyer)
Comment on attachment 287749 [details] [diff] [review]
Patch to add support for compound assignment to esc
looks good!
Attachment #287749 -
Flags: review?(jodyer) → review+
Comment 2•18 years ago
|
||
#410545 subsumes this (and is more correct, I suspect). It looks like the patch in this bug was never applied.
Comment 3•18 years ago
|
||
Correction, the patch in this bug was committed previously; I was looking at the wrong file.
Status: NEW → RESOLVED
Closed: 18 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•