(format string, args ...interface{})
| 80 | ) |
| 81 | |
| 82 | func (s *state) errorf(format string, args ...interface{}) reflect.Value { |
| 83 | s.err = fmt.Errorf(format, args...) |
| 84 | return zero |
| 85 | } |
| 86 | |
| 87 | // evalFieldChain evaluates .X.Y.Z possibly followed by arguments. |
| 88 | // dot is the environment in which to evaluate arguments, while |