From 5aede5c7598bd4036f963fc5f357785f5da3df4f Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Fri, 29 Oct 2010 16:02:40 +0800 Subject: [PATCH] Builder/Provider/File/Roo.js --- Builder/Provider/File/Roo.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Builder/Provider/File/Roo.js b/Builder/Provider/File/Roo.js index 449ee95a5..3c84d6ef7 100755 --- a/Builder/Provider/File/Roo.js +++ b/Builder/Provider/File/Roo.js @@ -231,7 +231,10 @@ Roo = XObject.define( Base.prototype.save.call(this); // now write the js file.. var js = this.path.replace(/\.bjs$/, '.js'); - File.write(js, this.toSource()); + var d = new Date(); + var js_src = this.toSource(); + print("TO SOURCE in " + ((new Date()) - d) + "ms"); + File.write(js, js_src); -- 2.39.2