(Tuple<? extends Syntactic.Item> items)
| 6997 | } |
| 6998 | |
| 6999 | public static String toString(Tuple<? extends Syntactic.Item> items) { |
| 7000 | String r = ""; |
| 7001 | for (int i = 0; i != items.size(); ++i) { |
| 7002 | Syntactic.Item ith = items.get(i); |
| 7003 | if (i != 0) { |
| 7004 | r += ","; |
| 7005 | } |
| 7006 | r += ith == null ? "?" : ith; |
| 7007 | } |
| 7008 | return r; |
| 7009 | } |
| 7010 | |
| 7011 | // ============================================================ |
| 7012 | // Modifiers |
no test coverage detected