(err errors.StaticError)
| 78 | } |
| 79 | |
| 80 | func (ef *termErrorFormatter) formatStatic(err errors.StaticError) string { |
| 81 | var buf bytes.Buffer |
| 82 | buf.WriteString(err.Error() + "\n") |
| 83 | ef.showCode(&buf, err.Loc()) |
| 84 | return buf.String() |
| 85 | } |
| 86 | |
| 87 | const bugURL = "https://github.com/google/go-jsonnet/issues" |
| 88 |