@@ -109,7 +109,7 @@ export const interrupt = (fiberId: FiberId.FiberId): Cause.Cause<never> => {
109109 const o = Object . create ( proto )
110110 o . _tag = OpCodes . OP_INTERRUPT
111111 o . fiberId = fiberId
112- return rehydrateAnnotations ( o , fiberId )
112+ return o
113113}
114114
115115/** @internal */
@@ -1304,8 +1304,7 @@ const AnnotationsReducer: Cause.CauseReducer<Context.Context<never>, unknown, Ca
13041304 emptyCase : ( _ ) => empty ,
13051305 failCase : ( context , error , annotations ) => fail ( addOriginalAnnotations ( error , Context . merge ( context , annotations ) ) ) ,
13061306 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 ) ,
13091308 sequentialCase : ( _ , left , right ) => sequential ( left , right ) ,
13101309 parallelCase : ( _ , left , right ) => parallel ( left , right ) ,
13111310 annotatedCase : ( context , cause , annotations ) => annotated ( cause , Context . merge ( context , annotations ) )
0 commit comments