ApplyOptions has 2 callbacks that are called for hunks or deltas If these functions return an error, abort the apply process immediately. If the first return value is true, the delta/hunk will be applied. If it is false, the delta/hunk will not be applied. In either case, the rest of the apply proc
| 898 | // If these functions return an error, abort the apply process immediately. |
| 899 | // If the first return value is true, the delta/hunk will be applied. If it is false, the delta/hunk will not be applied. In either case, the rest of the apply process will continue. |
| 900 | type ApplyOptions struct { |
| 901 | ApplyHunkCallback ApplyHunkCallback |
| 902 | ApplyDeltaCallback ApplyDeltaCallback |
| 903 | Flags uint |
| 904 | } |
| 905 | |
| 906 | type applyCallbackData struct { |
| 907 | options *ApplyOptions |
nothing calls this directly
no outgoing calls
no test coverage detected