()
| 14 | } |
| 15 | |
| 16 | func (a *InterpretError) Error() error { |
| 17 | if a == nil { |
| 18 | return nil |
| 19 | } |
| 20 | return a.err |
| 21 | } |
| 22 | |
| 23 | // Append is a runtime replacement for the append function |
| 24 | func Append(arr interface{}, elems ...interface{}) (interface{}, *InterpretError) { |
no outgoing calls