(msg string, args ...interface{})
| 45 | func (f buildFailure) String() string { return string(f) } |
| 46 | |
| 47 | func fail(msg string, args ...interface{}) { |
| 48 | str := fmt.Sprintf(msg, args...) |
| 49 | panic(buildFailure(str)) |
| 50 | } |
| 51 | |
| 52 | // Call invokes the function f with the specified arguments |
| 53 | func (b *Builder) Call(f *Function, args ...*Value) *Value { |
no test coverage detected