| 113 | } |
| 114 | |
| 115 | void builtin_array_clear ( Array & pArray, Context * context, LineInfoArg * at ) { |
| 116 | array_clear(*context, pArray, at); |
| 117 | } |
| 118 | |
| 119 | void builtin_array_lock ( Array & arr, Context * context, LineInfoArg * at ) { |
| 120 | array_lock(*context, arr, at); |
nothing calls this directly
no test coverage detected