JSDOC/Identifier.js
authoralan <alan@alanfast.akbkhome.com>
Mon, 19 Apr 2010 03:43:17 +0000 (11:43 +0800)
committeralan <alan@alanfast.akbkhome.com>
Mon, 19 Apr 2010 03:43:17 +0000 (11:43 +0800)
JSDOC/Identifier.js

index e69de29..07078ce 100644 (file)
@@ -0,0 +1,24 @@
+//<Script type="text/javascript">
+
+/**
+ * @class  Identifier
+ * holds details about identifiers and their replacement values
+ * used by the packer..
+ * 
+ */
+
+
+Identifier = function(name, scope) {
+    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
+});