| 306 | } |
| 307 | |
| 308 | LIST * frame_get_local( FRAME * frame, int32_t idx ) |
| 309 | { |
| 310 | /* The only local variables are the arguments. */ |
| 311 | return list_copy( lol_get( frame->args, idx ) ); |
| 312 | } |
| 313 | |
| 314 | static OBJECT * function_get_constant( JAM_FUNCTION * function, int32_t idx ) |
| 315 | { |
no test coverage detected