nitc :: ACallAssignExpr :: defaultinit
# A setter call with a standard method-name and any number of arguments. eg `x.m(y)=z`. OR just a simple assignment.
# Note: because the parser cannot distinguish a variable write with a setter call with an implicit receiver and no arguments, it always returns a `ACallAssignExpr`.
# Semantic analysis have to transform them to instance of `AVarAssignExpr`.
class ACallAssignExpr
super ACallFormExpr
super AAssignFormExpr
end
src/parser/parser_nodes.nit:2443,1--2449,3