| 121 | } |
| 122 | |
| 123 | void builtin_array_unlock ( Array & arr, Context * context, LineInfoArg * at ) { |
| 124 | array_unlock(*context, arr, at); |
| 125 | } |
| 126 | |
| 127 | void builtin_array_lock_mutable ( const Array & arr, Context * context, LineInfoArg * at ) { |
| 128 | array_lock(*context, const_cast<Array&>(arr), at); |
nothing calls this directly
no test coverage detected