script: import {foo} from foo; ... foo()
foo:
import {bar} from bar; ...func foo() {
... bar() // "line 42"
}
bar:
// ...
print("hi"); // or error()
stuff.get("thing-not-found")
I'm expecting all the issues in bar to be reported at sites in bar, but are reported at foo "line 42" instead. Nothing catastrophic, but for good modularity support...