static void ai_checkInput_match3(S pattern) { ai_checkInput_match3(pattern, null); } static void ai_checkInput_match3(S pattern, Matches m) { S input = ai_input(); if (!match(pattern, input, m)) quickFail("Input doesn't match: " + pattern + " / " + input); }