PropertyMgr.toString () |
for debugging
|
Sourcecode in PropertyMgr/objectFunctions.js:
1: function toString() { 2: res.push(); 3: var arr = this.keys(); 4: arr.sort(); 5: for (var i in arr) { 6: res.write("property "); 7: res.write(arr[i]); 8: res.write(" = "); 9: res.write(this.getProperty(arr[i])); 10: res.write("\n"); 11: } 12: return res.pop(); 13: } |