(stream)
| 204 | |
| 205 | // `identifier` |
| 206 | function hookIdentifier(stream) { |
| 207 | // MySQL/MariaDB identifiers |
| 208 | // ref: http://dev.mysql.com/doc/refman/5.6/en/identifier-qualifiers.html |
| 209 | var ch; |
| 210 | while ((ch = stream.next()) != null) { |
| 211 | if (ch == "`" && !stream.eat("`")) return "variable-2"; |
| 212 | } |
| 213 | return null; |
| 214 | } |
| 215 | |
| 216 | // variable token |
| 217 | function hookVar(stream) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…