visitModOperator method
Implementation
@override
String visitModOperator(ModOperatorNode node) {
final arg = node.content != null ? visit(node.content!) : null;
return switch (node.modStyle) {
ModStyle.bmod => "mod",
ModStyle.pmod => arg != null ? "(mod $arg)" : "(mod)",
ModStyle.mod => arg != null ? "mod $arg" : "mod",
};
}