(cond bool)
| 113 | } |
| 114 | |
| 115 | func (l *State) assert(cond bool) { |
| 116 | if !cond { |
| 117 | l.runtimeError("assertion failure") |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | func (l *State) errorMessage() { |
| 122 | if l.errorFunction != 0 { // is there an error handling function? |
no test coverage detected