static ParsedWithTokens pwt_winner(ParsedWithTokens a, ParsedWithTokens b) { ret a == null ? b : b == null ? a : a.length() >= b.length() ? a : b; }