# A complex assignment operator. (`+=` and `-=`)
abstract class AAssignOp
super Prod
# The combined assignment operator
var n_op: Token is writable, noinit
# The name of the operator without the `=` (eg '+')
fun operator: String is abstract
end
src/parser/parser_nodes.nit:2901,1--2910,3