(err *RuntimeError)
| 74 | } |
| 75 | |
| 76 | func (ef *termErrorFormatter) formatRuntime(err *RuntimeError) string { |
| 77 | return err.Error() + "\n" + ef.buildStackTrace(err.StackTrace) |
| 78 | } |
| 79 | |
| 80 | func (ef *termErrorFormatter) formatStatic(err errors.StaticError) string { |
| 81 | var buf bytes.Buffer |
no test coverage detected