You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello.
I'm trying to build the participle library inside a wasm app.
Among some "avoidable" minor issues I have noticed issue with panic("done") inside the validate function https://github.com/alecthomas/participle/blob/master/validate.go#L45
Somehow tiny-go doesn't process the deferred recover() call in this case.
Can it be replace with return nil ?
The text was updated successfully, but these errors were encountered:
Hello.
I'm trying to build the participle library inside a wasm app.
Among some "avoidable" minor issues I have noticed issue with
panic("done")
inside the validate functionhttps://github.com/alecthomas/participle/blob/master/validate.go#L45
Somehow tiny-go doesn't process the deferred recover() call in this case.
Can it be replace with
return nil
?The text was updated successfully, but these errors were encountered: