()
| 28 | } |
| 29 | |
| 30 | func (e *InvalidKeysError) Error() string { |
| 31 | return fmt.Sprintf("invalid variable references - %s", strings.Join(e.Keys, ",")) |
| 32 | } |
| 33 | |
| 34 | // newInvalidKeysError processes the invalid key set and returns an InvalidKeysError if present |
| 35 | func newInvalidKeysError(keySet map[string]bool) error { |
no outgoing calls