Browse Source

remove debug messages from module loading.

v0.7.4-release
Ryan 16 years ago
parent
commit
a0f2b8a0c5
  1. 14
      src/main.js
  2. 1
      test/test-test.js

14
src/main.js

@ -54,7 +54,7 @@ node.path = new function () {
this.target = target; this.target = target;
this.load = function (base_directory, callback) { this.load = function (base_directory, callback) {
node.debug("sub.load from <" + base_directory + "> " + this.toString()); //node.debug("sub.load from <" + base_directory + "> " + this.toString());
findScript(base_directory, name, function (filename) { findScript(base_directory, name, function (filename) {
if (filename === null) { if (filename === null) {
stderr.puts("Cannot find a script matching: " + name); stderr.puts("Cannot find a script matching: " + name);
@ -84,7 +84,7 @@ node.path = new function () {
var compiled = node.compile(source, filename); var compiled = node.compile(source, filename);
if (module.__on_load) { if (module.__on_load) {
node.debug("<"+ filename+"> has onload! this is bad"); //node.debug("<"+ filename+"> has onload! this is bad");
} }
module.__subs = []; module.__subs = [];
@ -121,15 +121,15 @@ node.path = new function () {
var scaffold = new Scaffold(content, filename, target); var scaffold = new Scaffold(content, filename, target);
node.debug("after scaffold <" + filename + ">"); //node.debug("after scaffold <" + filename + ">");
function finish() { function finish() {
node.debug("finish 1 load <" + filename + ">"); //node.debug("finish 1 load <" + filename + ">");
if (scaffold.on_load instanceof Function) { if (scaffold.on_load instanceof Function) {
node.debug("foo bar <" + filename + ">"); //node.debug("foo bar <" + filename + ">");
scaffold.on_load(); scaffold.on_load();
} }
node.debug("finish 2 load <" + filename + ">"); //node.debug("finish 2 load <" + filename + ">");
if (callback instanceof Function) if (callback instanceof Function)
callback(); callback();
@ -146,7 +146,7 @@ node.path = new function () {
var sub = scaffold.subs[i]; var sub = scaffold.subs[i];
sub.load(node.path.dirname(filename), function () { sub.load(node.path.dirname(filename), function () {
ncomplete += 1; ncomplete += 1;
node.debug("<" + filename + "> ncomplete = " + ncomplete.toString() + " scaffold.subs.length = " + scaffold.subs.length.toString()); //node.debug("<" + filename + "> ncomplete = " + ncomplete.toString() + " scaffold.subs.length = " + scaffold.subs.length.toString());
if (ncomplete === scaffold.subs.length) if (ncomplete === scaffold.subs.length)
finish(); finish();
}); });

1
test/test-test.js

@ -2,7 +2,6 @@ include("mjsunit");
var a = require("fixtures/a"); var a = require("fixtures/a");
function on_load () { function on_load () {
stderr.puts("hello world");
assertFalse(false, "testing the test program."); assertFalse(false, "testing the test program.");
assertInstanceof(a.A, Function); assertInstanceof(a.A, Function);

Loading…
Cancel
Save