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
I don’t think we can support circular import-with’s, so we should probably detect when it’s happening and abort. Here’s a minimal reproduction of nondeterministic behavior:
A
bar // RuntimeError: bar could not be resolved
import {} from "B"
import {bar} from "C"