(str)
| 33412 | // utils ---------------------------- |
| 33413 | |
| 33414 | function unexpected(str) { |
| 33415 | errored = true |
| 33416 | stream.emit('error', new Error( |
| 33417 | (str || 'unexpected '+state) + |
| 33418 | ' at line '+state[0].token.line |
| 33419 | )) |
| 33420 | } |
| 33421 | |
| 33422 | function assert(type, data) { |
| 33423 | return 1, |
no outgoing calls
no test coverage detected