forked from Mirror/wren
This is a breaking change because existing imports in user Wren code that assume the path is relative to the entrypoint file will now likely fail. Also, stack trace output and host API calls that take a module string now need the resolved module string, not the short name that appears in the import.
4 lines
217 B
Plaintext
4 lines
217 B
Plaintext
// Should execute the module:
|
|
// expect: ran module
|
|
import "./module" for DoesNotExist // expect runtime error: Could not find a variable named 'DoesNotExist' in module 'test/language/module/unknown_variable/module'.
|