(str)
| 80097 | // utils ---------------------------- |
| 80098 | |
| 80099 | function unexpected(str) { |
| 80100 | errored = true |
| 80101 | stream.emit('error', new Error( |
| 80102 | (str || 'unexpected '+state) + |
| 80103 | ' at line '+state[0].token.line |
| 80104 | )) |
| 80105 | } |
| 80106 | |
| 80107 | function assert(type, data) { |
| 80108 | return 1, |
no outgoing calls
no test coverage detected