Indicates whether this token contains a string.
()
| 112 | |
| 113 | /** Indicates whether this token contains a string. */ |
| 114 | public boolean |
| 115 | isString() { |
| 116 | return (type == IDENTIFIER || type == QUOTED_STRING); |
| 117 | } |
| 118 | |
| 119 | /** Indicates whether this token contains an EOL or EOF. */ |
| 120 | public boolean |
no outgoing calls
no test coverage detected