0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 23:43:09 +01:00
nodejs/test/mjsunit/fixtures/b/c.js

19 lines
265 B
JavaScript
Raw Normal View History

node.debug("load fixtures/b/c.js");
var d = require("d.js");
var string = "C";
exports.C = function () {
return string;
};
exports.D = function () {
return d.D();
};
process.addListener("exit", function () {
string = "C done";
puts("b/c.js exit");
});