[Laszlo-checkins] r13613 - openlaszlo/trunk/lps/components/debugger/platform/swf8
bargull@openlaszlo.org
bargull at openlaszlo.org
Mon Apr 6 02:54:39 PDT 2009
Author: bargull
Date: 2009-04-06 02:54:36 -0700 (Mon, 06 Apr 2009)
New Revision: 13613
Modified:
openlaszlo/trunk/lps/components/debugger/platform/swf8/eval.lzs
Log:
Change 20090406-bargull-6iK by bargull at dell--p4--2-53 on 2009-04-06 11:54:19
in /home/Admin/src/svn/openlaszlo/trunk
for http://svn.openlaszlo.org/openlaszlo/trunk
Summary: fix implicit this error
New Features:
Bugs Fixed: LPP-8028 (SWF8: no implicit this for js2-style classes (LzDebugEvalLoader))
Technical Reviewer: hqm
QA Reviewer: (pending)
Doc Reviewer: (pending)
Documentation:
Release Notes:
Details:
There is no implicit this in JS1 runtimes.
Tests:
Modified: openlaszlo/trunk/lps/components/debugger/platform/swf8/eval.lzs
===================================================================
--- openlaszlo/trunk/lps/components/debugger/platform/swf8/eval.lzs 2009-04-06 09:54:10 UTC (rev 13612)
+++ openlaszlo/trunk/lps/components/debugger/platform/swf8/eval.lzs 2009-04-06 09:54:36 UTC (rev 13613)
@@ -9,7 +9,7 @@
function LzDebugEvalLoader (view) {
this.loader = new LzLoader(view.sprite, { attachname: 'debugloader' });
- errorDel = new LzDelegate(this, 'evalError', this.loader, 'onerror');
+ this.errorDel = new LzDelegate(this, 'evalError', this.loader, 'onerror');
}
function doEval(expr:String, seq:int=0) {
More information about the Laszlo-checkins
mailing list