| 117 | } |
| 118 | |
| 119 | void builtin_array_lock ( Array & arr, Context * context, LineInfoArg * at ) { |
| 120 | array_lock(*context, arr, at); |
| 121 | } |
| 122 | |
| 123 | void builtin_array_unlock ( Array & arr, Context * context, LineInfoArg * at ) { |
| 124 | array_unlock(*context, arr, at); |
nothing calls this directly
no test coverage detected