| 285 | } |
| 286 | |
| 287 | LIST * frame_get_local( FRAME * frame, int idx ) |
| 288 | { |
| 289 | /* The only local variables are the arguments. */ |
| 290 | return list_copy( lol_get( frame->args, idx ) ); |
| 291 | } |
| 292 | |
| 293 | static OBJECT * function_get_constant( JAM_FUNCTION * function, int idx ) |
| 294 | { |
no test coverage detected