Checks if the specified character is a quote. @param cp character to be checked @return result
(final int cp)
| 103 | * @return result |
| 104 | */ |
| 105 | protected static boolean quote(final int cp) { |
| 106 | return cp == '"' || cp == '\''; |
| 107 | } |
| 108 | |
| 109 | /** |
| 110 | * Peeks forward and consumes the string if it equals the specified one. |
no outgoing calls
no test coverage detected