UnBCIC-TP2 / Oberon-Scala

An implementation of the Oberon language using Scala
55 stars 118 forks source link

Review Assignment Stmt #112

Closed rbonifacio closed 2 years ago

rbonifacio commented 2 years ago

Currently, we have two kinds of assignments: Assignment and EAssignment. The former deals with the situations in which we assign an expression to a variable. The second form (EAssignment) deals with situations in which we assign an expression to a position of an array or to a field of a record.

It does not make sense to keep both alternatives.