diff options
author | kpdecker <kpdecker@gmail.com> | 2011-07-30 10:33:40 -0500 |
---|---|---|
committer | kpdecker <kpdecker@gmail.com> | 2011-07-30 10:33:40 -0500 |
commit | 2e77f1c777dab92e43b6b5cc288ee938a64fa6d9 (patch) | |
tree | c99364040f628afecd358b603e52b248e5d0c8de /lib/handlebars/debug.js | |
parent | 8c49721c704013656e96a53903d3302e52b0e5e3 (diff) | |
download | handlebars.js-2e77f1c777dab92e43b6b5cc288ee938a64fa6d9.zip handlebars.js-2e77f1c777dab92e43b6b5cc288ee938a64fa6d9.tar.gz handlebars.js-2e77f1c777dab92e43b6b5cc288ee938a64fa6d9.tar.bz2 |
Remove the debug file (Suspect broken Due to missing class references)
Diffstat (limited to 'lib/handlebars/debug.js')
-rw-r--r-- | lib/handlebars/debug.js | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/lib/handlebars/debug.js b/lib/handlebars/debug.js deleted file mode 100644 index c9c73ca..0000000 --- a/lib/handlebars/debug.js +++ /dev/null @@ -1,29 +0,0 @@ -var Handlebars = require("handlebars"); - -// BEGIN(BROWSER) -(function() { - var classes = ["Lexer", "PrintVisitor", "Context", "Runtime", "Exception"]; - var prop; - - for(var i=0, l=classes.length; i<l; i++) { - var className = classes[i], klass = Handlebars[className]; - klass.displayName = "new Handlebars." + className; - - for(prop in klass) { - if(klass.hasOwnProperty(prop)) { - klass[prop].displayName = "Handlebars." + className + "#" + prop; - } - } - } - - for(prop in Handlebars.Utils) { - if(Handlebars.Utils.hasOwnProperty(prop)) { - Handlebars.Utils[prop].displayName = "Handlebars.Utils." + prop; - } - } - - Handlebars.parse.displayName = "Handlebars.parse"; - Handlebars.print.displayName = "Handlebars.print"; - Handlebars.compile.displayName = "Handlebars.compile"; -})(); -// END(BROWSER) |