[Laszlo-checkins] r12048 - in openlaszlo/trunk/WEB-INF/lps/lfc: compiler core debugger debugger/platform/dhtml
bargull@openlaszlo.org
bargull at openlaszlo.org
Wed Dec 10 16:22:26 PST 2008
Author: bargull
Date: 2008-12-10 16:22:21 -0800 (Wed, 10 Dec 2008)
New Revision: 12048
Modified:
openlaszlo/trunk/WEB-INF/lps/lfc/compiler/LzBootstrapDebugService.lzs
openlaszlo/trunk/WEB-INF/lps/lfc/core/LzNode.lzs
openlaszlo/trunk/WEB-INF/lps/lfc/debugger/LzDebug.lzs
openlaszlo/trunk/WEB-INF/lps/lfc/debugger/LzMemory.lzs
openlaszlo/trunk/WEB-INF/lps/lfc/debugger/platform/dhtml/LzDebug.js
Log:
Change 20081211-bargull-rSq by bargull at dell--p4--2-53 on 2008-12-11 00:26:44
in /home/Admin/src/svn/openlaszlo/trunk
for http://svn.openlaszlo.org/openlaszlo/trunk
Summary: schema build warnings (part two)
New Features:
Bugs Fixed: LPP-7408 (partial)
Technical Reviewer: ptw
QA Reviewer: (pending)
Doc Reviewer: (pending)
Documentation:
Release Notes:
Details:
This resolves the rest of the "easy to fix" warnings.
Tests:
Modified: openlaszlo/trunk/WEB-INF/lps/lfc/compiler/LzBootstrapDebugService.lzs
===================================================================
--- openlaszlo/trunk/WEB-INF/lps/lfc/compiler/LzBootstrapDebugService.lzs 2008-12-10 23:30:34 UTC (rev 12047)
+++ openlaszlo/trunk/WEB-INF/lps/lfc/compiler/LzBootstrapDebugService.lzs 2008-12-11 00:22:21 UTC (rev 12048)
@@ -212,6 +212,7 @@
}
if ($as3) {
+ /** @access private */
function log (msg) { trace (msg); }
} else {
/**
Modified: openlaszlo/trunk/WEB-INF/lps/lfc/core/LzNode.lzs
===================================================================
--- openlaszlo/trunk/WEB-INF/lps/lfc/core/LzNode.lzs 2008-12-10 23:30:34 UTC (rev 12047)
+++ openlaszlo/trunk/WEB-INF/lps/lfc/core/LzNode.lzs 2008-12-11 00:22:21 UTC (rev 12048)
@@ -162,7 +162,7 @@
* attribute will be constrained later by `__LZapplyArgs`.
*
* @param String attr: The name of the attribute to look up
- * @returns boolean: True if it will be constrained (barring the
+ * @return boolean: True if it will be constrained (barring the
* constructor itself overriding it!)
*
* @access private */
@@ -2281,7 +2281,7 @@
/**
* @access private
* @param type:String the attribute type
- * @returns value:String
+ * @return value:String
*
* Returns the value converted to a string by the
* presentationtype's present method
@@ -2302,7 +2302,7 @@
* @access private
* @param name:String the name of the attribute
* @param type:String the attribute type
- * @returns value:String
+ * @return value:String
*
* Returns the value of the named attribute converted to a string by the
* presentationtype's present method
Modified: openlaszlo/trunk/WEB-INF/lps/lfc/debugger/LzDebug.lzs
===================================================================
--- openlaszlo/trunk/WEB-INF/lps/lfc/debugger/LzDebug.lzs 2008-12-10 23:30:34 UTC (rev 12047)
+++ openlaszlo/trunk/WEB-INF/lps/lfc/debugger/LzDebug.lzs 2008-12-11 00:22:21 UTC (rev 12048)
@@ -785,7 +785,7 @@
* Compute a function name if you can
*
* @param Function fn: the function whose name to compute
- * @param Boolean isGlobal: if true, will only return the name if it is
+ * @param Boolean mustBeUnique: if true, will only return the name if it is
* a global name.
* @return String: the function name
*
Modified: openlaszlo/trunk/WEB-INF/lps/lfc/debugger/LzMemory.lzs
===================================================================
--- openlaszlo/trunk/WEB-INF/lps/lfc/debugger/LzMemory.lzs 2008-12-10 23:30:34 UTC (rev 12047)
+++ openlaszlo/trunk/WEB-INF/lps/lfc/debugger/LzMemory.lzs 2008-12-11 00:22:21 UTC (rev 12048)
@@ -45,8 +45,8 @@
/**
* Mark an object
*
- * @param o Object: the object
- * @returns boolean: True unless the object could not be marked
+ * @param Object o: the object
+ * @return boolean: True unless the object could not be marked
* (indicates it is probably a primitive object that we cannot trace
* through)
*
@@ -73,8 +73,8 @@
/**
* Is an object marked?
*
- * @param o Object: the object
- * @returns null|false|true: If the object has been marked in this
+ * @param Object o: the object
+ * @return null|false|true: If the object has been marked in this
* generation, `true`; if the object has been marked, but not in this
* generation, `false`; if the object has never been marked, `null`.
* The latter distinction is used by the leak detector.
@@ -592,7 +592,7 @@
/**
* List new objects and why they are alive
*
- * @param top Number: How many leaks to detail, default is 10
+ * @param Number top: How many leaks to detail, default is 10
* @access private
*/
Debug.whyAlive = function (top=10) {
Modified: openlaszlo/trunk/WEB-INF/lps/lfc/debugger/platform/dhtml/LzDebug.js
===================================================================
--- openlaszlo/trunk/WEB-INF/lps/lfc/debugger/platform/dhtml/LzDebug.js 2008-12-10 23:30:34 UTC (rev 12047)
+++ openlaszlo/trunk/WEB-INF/lps/lfc/debugger/platform/dhtml/LzDebug.js 2008-12-11 00:22:21 UTC (rev 12048)
@@ -314,7 +314,7 @@
* on a view will print the view and parent chain to the debugger.
*
* @param Boolean enable : enable or disable outlines
- * @param public
+ * @access public
*/
function showDivs (enable) {
if (enable == null) enable = true;
More information about the Laszlo-checkins
mailing list