Source code
Revision control
Copy as Markdown
Other Tools
var threw = false;
try {
getModuleEnvironmentNames(parseModule("{}", "", "json"))
} catch (e) {
threw = true;
assertEq(e instanceof Error, true, "expected Error");
}
assertEq(threw, true, "expected an exception thrown");
var m = registerModule("m", parseModule('{"test": "foo"}', "", "json"));
moduleLink(m);
moduleEvaluate(m);
threw = false;
try {
getModuleEnvironmentValue(m, 'default');
} catch (e) {
threw = true;
assertEq(e instanceof Error, true, "expected Error");
}
assertEq(threw, true, "expected an exception thrown");