Parameter returns i'th function parameter
(i int)
| 136 | |
| 137 | // Parameter returns i'th function parameter |
| 138 | func (b *Builder) Parameter(i int) *Value { |
| 139 | return b.params[i] |
| 140 | } |
| 141 | |
| 142 | // Undef returns a new undefined value of the specified type. |
| 143 | func (b *Builder) Undef(ty Type) *Value { |