@@ -109,7 +109,7 @@ export const interrupt = (fiberId: FiberId.FiberId): Cause.Cause<never> => {
109
109
const o = Object . create ( proto )
110
110
o . _tag = OpCodes . OP_INTERRUPT
111
111
o . fiberId = fiberId
112
- return rehydrateAnnotations ( o , fiberId )
112
+ return o
113
113
}
114
114
115
115
/** @internal */
@@ -1304,8 +1304,7 @@ const AnnotationsReducer: Cause.CauseReducer<Context.Context<never>, unknown, Ca
1304
1304
emptyCase : ( _ ) => empty ,
1305
1305
failCase : ( context , error , annotations ) => fail ( addOriginalAnnotations ( error , Context . merge ( context , annotations ) ) ) ,
1306
1306
dieCase : ( context , defect , annotations ) => die ( addOriginalAnnotations ( defect , Context . merge ( context , annotations ) ) ) ,
1307
- interruptCase : ( context , fiberId , annotations ) =>
1308
- interrupt ( addOriginalAnnotations ( fiberId , Context . merge ( context , annotations ) ) ) ,
1307
+ interruptCase : ( _ , fiberId ) => interrupt ( fiberId ) ,
1309
1308
sequentialCase : ( _ , left , right ) => sequential ( left , right ) ,
1310
1309
parallelCase : ( _ , left , right ) => parallel ( left , right ) ,
1311
1310
annotatedCase : ( context , cause , annotations ) => annotated ( cause , Context . merge ( context , annotations ) )
0 commit comments