(field int)
| 259 | } |
| 260 | |
| 261 | func (e *engine) k(field int) value { |
| 262 | if field&bitRK != 0 { // OPT: Inline isConstant(field). |
| 263 | return e.constants[field & ^bitRK] // OPT: Inline constantIndex(field). |
| 264 | } |
| 265 | return e.frame[field] |
| 266 | } |
| 267 | |
| 268 | func (e *engine) expectNext(expected opCode) instruction { |
| 269 | i := e.callInfo.step() // go to next instruction |