JSDOC/Identifier.js
authorAlan Knowles <alan@akkbhome.com>
Tue, 6 Jul 2010 13:39:11 +0000 (21:39 +0800)
committerAlan Knowles <alan@akkbhome.com>
Tue, 6 Jul 2010 13:39:11 +0000 (21:39 +0800)
JSDOC/Identifier.js [deleted file]

diff --git a/JSDOC/Identifier.js b/JSDOC/Identifier.js
deleted file mode 100644 (file)
index 7cc82bd..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-//<Script type="text/javascript">
-
-/**
- * @class  Identifier
- * holds details about identifiers and their replacement values
- * used by the packer..
- * 
- */
-
-
-function Identifier(name, scope) {
-   // print("NEW IDENT: " + name);
-    this.name = name;
-    this.scope = scope;
-    this.identifiers = {};
-    
-}
-Identifier.prototype = {
-    name: '',
-    refcount: 1,
-    mungedValue : '', // should be at least 1?!?!
-    scope : false,  // script of fn scope..
-    toMunge : true
-};