1
0
forked from Mirror/wren

Relative imports!

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.
This commit is contained in:
Bob Nystrom
2018-03-24 11:10:36 -07:00
parent 5539c59750
commit 8210452970
41 changed files with 152 additions and 107 deletions

View File

@ -1,4 +1,4 @@
import "cthulu" for Cthulu
import "./cthulu" for Cthulu
class Lovecraft {
construct new() {}