| 1684 | } |
| 1685 | |
| 1686 | tsn_value tsn_call_fargs( |
| 1687 | tsn_vm* ctx, tsn_value_const func_obj, tsn_value_const this_obj, int argc, tsn_value_const* argv) { |
| 1688 | return tsn_call(ctx, func_obj, this_obj, argc, argv); |
| 1689 | } |
| 1690 | |
| 1691 | tsn_value tsn_call_constructor( |
| 1692 | tsn_vm* ctx, tsn_value_const ctor, tsn_value_const new_target, int argc, tsn_value_const* argv) { |
nothing calls this directly
no test coverage detected