(String s)
| 50 | } |
| 51 | |
| 52 | public boolean opt(String s) { |
| 53 | eatws(); |
| 54 | int slen = s.length(); |
| 55 | if (val.regionMatches(pos, s, 0, slen)) { |
| 56 | pos += slen; |
| 57 | return true; |
| 58 | } |
| 59 | return false; |
| 60 | } |
| 61 | |
| 62 | public boolean opt(char ch) { |
| 63 | eatws(); |
no test coverage detected