Special case: "template: no template %q associated with template %q" Matches https://cs.opensource.google/go/go/+/refs/tags/go1.23.6:src/text/template/exec.go;l=191
(s string, remainder string)
| 386 | // Special case: "template: no template %q associated with template %q" |
| 387 | // Matches https://cs.opensource.google/go/go/+/refs/tags/go1.23.6:src/text/template/exec.go;l=191 |
| 388 | func parseTemplateNoTemplateError(s string, remainder string) (TraceableError, bool) { |
| 389 | if strings.HasPrefix(remainder, "no template ") { |
| 390 | return TraceableError{message: s}, true |
| 391 | } |
| 392 | return TraceableError{}, false |
| 393 | } |
| 394 | |
| 395 | // Simple form: "<templateName>: <errMsg>" |
| 396 | // Use LastIndex to avoid splitting colons within line:col info. |
no outgoing calls
searching dependent graphs…