Author: gotcha
Date: Sun Dec  9 20:57:52 2007
New Revision: 49585

Modified:
   kukit/kukit.js/branch/finish-closures/kukit/errors.js
Log:
private class

Modified: kukit/kukit.js/branch/finish-closures/kukit/errors.js
==============================================================================
--- kukit/kukit.js/branch/finish-closures/kukit/errors.js       (original)
+++ kukit/kukit.js/branch/finish-closures/kukit/errors.js       Sun Dec  9 
20:57:52 2007
@@ -54,8 +54,10 @@
 *
 */
 
-
-var ErrorAnnotation = function() {
+/*
+*  class _ErrorAnnotation
+*/
+var _ErrorAnnotation = function() {
 
     this.constructError = function(e, name, message, kw) {
 ;;;     if (typeof(kw) == "undefined") {
@@ -102,7 +104,7 @@
 };
 
 var setErrorInfo = function(e, name, message, kw) {
-    return new ErrorAnnotation().constructError(e, name, message, kw);
+    return new _ErrorAnnotation().constructError(e, name, message, kw);
 };
 
 /* Protects a function */
_______________________________________________
Kukit-checkins mailing list
[email protected]
http://codespeak.net/mailman/listinfo/kukit-checkins

Reply via email to