djrieger / mjplusplus

A compiler for the MiniJava language
http://djrieger.github.io/mjplusplus/doc/doxygen/html/
6 stars 1 forks source link

Fix bug in assignments in assignments #67

Closed djrieger closed 9 years ago

ratefuchs commented 9 years ago

There is still a bug here. It happens when we have an array assignment within the index of a (higher-level) array assignment, e.g. x[x[2]=3] = x[2]. I suspect there might be a problem with the visiting/execution order of the array index and the right hand side.

Nidan commented 9 years ago

Fixed in 0322615