Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
3.0
-
None
Description
While the code like
2 = 3
throws exception "assignment error in .." during parsing, the code like
2 += 3
is parsed successfully and only throws exception "illegal assignment form 0" in runtime which makes it harder for debug.