(f *anymath.Function)
| 26 | var _ Function = (*mathReducer)(nil) |
| 27 | |
| 28 | func newMathReducer(f *anymath.Function) *mathReducer { |
| 29 | return &mathReducer{function: f} |
| 30 | } |
| 31 | |
| 32 | func (m *mathReducer) Result(sctx *super.Context) super.Value { |
| 33 | if m.stringErr { |