(boolean iCase, char ch1, char ch2)
| 510 | } |
| 511 | |
| 512 | private static boolean isCharMatch(boolean iCase, char ch1, char ch2) { |
| 513 | return (iCase) ? Character.toUpperCase(ch1) == Character.toUpperCase(ch2) : (ch1 == ch2); |
| 514 | } |
| 515 | |
| 516 | private RuleReturn<V> innerTest(String name, PegLegRule<V> rule) { |
| 517 | SingleNode<V> values = get().saveValues(); |
no outgoing calls
no test coverage detected