svoid surroundTokenRangeWithRoundBrackets(LS tok, IntRange r) { if (r != null) surroundTokenRangeWithRoundBrackets(tok, r.start, r.end); } svoid surroundTokenRangeWithRoundBrackets(LS tok, int i, int j) { tokAppend(tok, i & ~1, "("); tokPrepend(tok, j | 1, ")"); }