Add ".wren" to modules in the embedder.

This commit is contained in:
Bob Nystrom
2015-02-06 11:52:05 -08:00
parent bb647d4247
commit 2005e1e0a2
10 changed files with 17 additions and 17 deletions
@@ -1,3 +1,3 @@
// Should execute the module:
// expect: ran module
var DoesNotExist = "module.wren".import_("DoesNotExist") // expect runtime error: Could not find a variable named 'DoesNotExist' in module 'module.wren'.
var DoesNotExist = "module".import_("DoesNotExist") // expect runtime error: Could not find a variable named 'DoesNotExist' in module 'module'.