(errStr string, path Path, index int)
| 133 | } |
| 134 | |
| 135 | func MakeBudgetError(errStr string, path Path, index int) error { |
| 136 | return BudgetError{fmt.Sprintf("%s at index:%d (%s)", errStr, index, FormatPath(path))} |
| 137 | } |
| 138 | |
| 139 | var simplePathStrRe = regexp.MustCompile(`^[a-zA-Z_][a-zA-Z0-9_]*$`) |
| 140 |
no test coverage detected