(k value)
| 213 | } |
| 214 | |
| 215 | func arrayIndex(k value) int { |
| 216 | if n, ok := k.(float64); ok { |
| 217 | if i := int(n); float64(i) == n { |
| 218 | return i |
| 219 | } |
| 220 | } |
| 221 | return -1 |
| 222 | } |
| 223 | |
| 224 | func (l *State) next(t *table, key int) bool { |
| 225 | i, k := 0, l.stack[key] |
no outgoing calls
no test coverage detected
searching dependent graphs…