(index int)
| 28 | } |
| 29 | |
| 30 | func (vs Values) Get(index int) *Value { |
| 31 | if index >= len(vs.vs) { |
| 32 | return newValue(vs.vm, otto.UndefinedValue()) |
| 33 | } |
| 34 | return vs.vs[index] |
| 35 | } |
| 36 | |
| 37 | func (vs Values) Len() int { |
| 38 | return len(vs.vs) |
nothing calls this directly
no test coverage detected