[Laszlo-checkins] r14381 - openlaszlo/trunk/lps/components/rpc/library

hqm@openlaszlo.org hqm at openlaszlo.org
Fri Jul 24 13:15:04 PDT 2009


Author: hqm
Date: 2009-07-24 13:15:03 -0700 (Fri, 24 Jul 2009)
New Revision: 14381

Modified:
   openlaszlo/trunk/lps/components/rpc/library/rpc.js
Log:
Change 20090724-hqm-u by hqm at badtzmaru.home on 2009-07-24 13:48:23 EDT
    in /Users/hqm/openlaszlo/trunk-clean
    for http://svn.openlaszlo.org/openlaszlo/trunk

Summary: fix DHTML soap issue

New Features: 

Bugs Fixed: LPP-8347

Technical Reviewer: antun
QA Reviewer: (pending)
Doc Reviewer: (pending)

Documentation:

Release Notes:

Details:
    
+ removed the "#passthrough", because the LPS compiler knows how
to compile static methods now for js1 runtimes.

Tests:

run test case, app starts up. (it will print an error to the debugger, but app doesn't
crash the DHTML runtime while loading)




Modified: openlaszlo/trunk/lps/components/rpc/library/rpc.js
===================================================================
--- openlaszlo/trunk/lps/components/rpc/library/rpc.js	2009-07-24 17:51:30 UTC (rev 14380)
+++ openlaszlo/trunk/lps/components/rpc/library/rpc.js	2009-07-24 20:15:03 UTC (rev 14381)
@@ -36,13 +36,12 @@
 // @param Number num: number to pass down to explicitly cast to a double
 //------------------------------------------------------------------------------
 
-
-    #passthrough {
-        static function DoubleWrapper (num) {
-            return new LzRPCDoubleWrapper(num);
-        };
-    }#
+    
+static function DoubleWrapper (num) {
+  return new LzRPCDoubleWrapper(num);
+};
        
+
 //------------------------------------------------------------
 // Global RPC sequence number for server requests.
 //------------------------------------------------------------



More information about the Laszlo-checkins mailing list