From b5e0c3ba61d54f96516d6791ae07c0d3f547c539 Mon Sep 17 00:00:00 2001 From: euzuro Date: Thu, 19 Jul 2007 23:27:37 +0000 Subject: [PATCH] add APIFunction: indicators to the last four functions from Console.js -- I'm assuming that their absence is a result of an oversight, not intention. If this is incorrect, my apologies, and obviously feel free to revert this change. git-svn-id: http://svn.openlayers.org/trunk/openlayers@3781 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/Console.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/OpenLayers/Console.js b/lib/OpenLayers/Console.js index 021b183f9a..996fb10306 100644 --- a/lib/OpenLayers/Console.js +++ b/lib/OpenLayers/Console.js @@ -163,6 +163,7 @@ OpenLayers.Console = { time: function() {}, /** + * APIFunction: timeEnd * Stops a timer created by a call to OpenLayers.Console.time(name) and * writes the time elapsed. * @@ -172,6 +173,7 @@ OpenLayers.Console = { timeEnd: function() {}, /** + * APIFunction: profile * Turns on the JavaScript profiler. The optional argument title would * contain the text to be printed in the header of the profile report. * @@ -183,6 +185,7 @@ OpenLayers.Console = { profile: function() {}, /** + * APIFunction: profileEnd * Turns off the JavaScript profiler and prints its report. * * This function is not currently implemented in Firebug Lite. @@ -190,6 +193,7 @@ OpenLayers.Console = { profileEnd: function() {}, /** + * APIFunction: count * Writes the number of times that the line of code where count was called * was executed. The optional argument title will print a message in * addition to the number of the count.