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
area-vmUse area-vm for VM related issues, including code coverage, and the AOT and JIT backends.type-bugIncorrect behavior (everything from a crash to more subtle misbehavior)
If a syntax error is encountered at runtime, it's not detected synchronously while main() is on the stack, and the isolate recovers using Isolate.setErrorsFatal(false), microtasks in that isolate will cease to be dispatched. For example:
area-vmUse area-vm for VM related issues, including code coverage, and the AOT and JIT backends.type-bugIncorrect behavior (everything from a crash to more subtle misbehavior)
If a syntax error is encountered at runtime, it's not detected synchronously while
main()
is on the stack, and the isolate recovers usingIsolate.setErrorsFatal(false)
, microtasks in that isolate will cease to be dispatched. For example:This prints "caught error" and "after timer", but not "after microtask".
The text was updated successfully, but these errors were encountered: