Author: reebalazs
Date: Tue Dec 25 12:58:15 2007
New Revision: 50072

Modified:
   kukit/kukit.js/branch/ree-service-layer-and-refactoring/   (props changed)
   
kukit/kukit.js/branch/ree-service-layer-and-refactoring/tests/test_interfaces.js
Log:
Small fixes

Modified: 
kukit/kukit.js/branch/ree-service-layer-and-refactoring/tests/test_interfaces.js
==============================================================================
--- 
kukit/kukit.js/branch/ree-service-layer-and-refactoring/tests/test_interfaces.js
    (original)
+++ 
kukit/kukit.js/branch/ree-service-layer-and-refactoring/tests/test_interfaces.js
    Tue Dec 25 12:58:15 2007
@@ -396,12 +396,13 @@
             parmtypes: [
                 ['preventDefault', 'bool', true],
                 ['allowBubbling', 'bool', false]]});
-        iface.getMethodDescriptor('click').registerBindIteration({
+        /*iface.getMethodDescriptor('click').registerBindIteration({
             namespace: null,
             names: ['click', 'timeout'],
             iterName: 'Each',
-            binderClass: M;
-            bindMethodName: 'bind';
+            binderClass: M,
+            bindMethodName: 'bind'});
+        //*/
         //
         // somewhere else, extras registers the methods:
         iface.getMethodDescriptor('timeout').register({
@@ -412,11 +413,12 @@
                 ['renew', 'bool', false]]});
         // It needs a bind iterator even though it is a single
         // group.
-        iface.getMethodDescriptor('timeout').registerBindIteration({
+        /*iface.getMethodDescriptor('timeout').registerBindIteration({
             namespace: null,
             names: ['click', 'timeout'],
-            iterName: 'each',
-            bindMethodName:
+            iterName: 'Each',
+            bindMethodName: 'bind'});
+        */
 
         //
         // Now finalize it.
@@ -424,9 +426,9 @@
         // Create an instance...
         var o = new C();
         // We can call the methods on it,
-        this.assert(o.click.binderMethod(), 'Binding click event.');
-        this.assert(typeof(o.keydown.binderMethod()), 'undefined');
-        this.assert(typeof(o.timeout.binderMethod()), 'undefined');
+        //this.assert(o.click.binderMethodName, 'bind');
+        //this.assert(o.keydown.binderMethodName, 'bind');
+        //this.assert(o.timeout.binderMethodName, 'bind');
     };
 
     this.testPluginNoDoubleReg = function() {
_______________________________________________
Kukit-checkins mailing list
[email protected]
http://codespeak.net/mailman/listinfo/kukit-checkins

Reply via email to