sbool match3_plusBrackets_uncurly(S pat, S s) { ret match3_plusBrackets_uncurly(pat, s, null); } sbool match3_plusBrackets_uncurly(S pat, S s, Matches matches) { if (!match3_plusBrackets(pat, s, matches)) false; ret true with uncurlyMatchesInPlace(matches); } sbool match3_plusBrackets_uncurly(S pat, L toks, Matches matches) { if (!match3_plusBrackets(pat, toks, matches)) false; ret true with uncurlyMatchesInPlace(matches); }