Arithmetic modulo operator. This is not an euclidean modulo, it is equivalent to the % operator in Dart.
%
Expr operator %(Object other) => mod(this, $(other));