| 1489 | |
| 1490 | |
| 1491 | LIST * builtin_imported_modules( FRAME * frame, int flags ) |
| 1492 | { |
| 1493 | LIST * const arg0 = lol_get( frame->args, 0 ); |
| 1494 | OBJECT * const module = list_empty( arg0 ) ? 0 : list_front( arg0 ); |
| 1495 | return imported_modules( bindmodule( module ) ); |
| 1496 | } |
| 1497 | |
| 1498 | |
| 1499 | LIST * builtin_instance( FRAME * frame, int flags ) |
nothing calls this directly
no test coverage detected