Issue with ParseError Propagation in Effect Typescript Library
I have an ParseError propagating problem
Lets assume I have the following code:
Then the type of program is
Of course, I could just define the type as
Is this an error on my coding side? Shouldn't
Lets assume I have the following code:
Then the type of program is
Effect.Effect<typeof coolStruct.Encoded, never, never>, even though if rightfully throws with a ParseErrorOf course, I could just define the type as
Effect.Effect<typeof coolStruct.Encoded, ParseError, never, but somehow it still never reaches the catchBlock, even If I pipe into a .catchTag("ParseError", ...)Is this an error on my coding side? Shouldn't
make be an Effect, which propagates a ParseError into the Error Channel? (I even have the feeling, that it was like this a while ago)