(stream, state)
| 384 | return slimClass(stream, state); |
| 385 | } |
| 386 | function slimTagExtras(stream, state) { |
| 387 | if (stream.match(/^(<>?|><?)/)) { |
| 388 | state.tokenize = slimClass; |
| 389 | return null; |
| 390 | } |
| 391 | return slimClass(stream, state); |
| 392 | } |
| 393 | function slimClass(stream, state) { |
| 394 | if (stream.match(classIdRegexp)) { |
| 395 | state.tokenize = slimClass; |
nothing calls this directly
no test coverage detected