Minor improvement in readability -

git-svn-id: svn://10.0.0.236/trunk@100443 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
pschwartau%netscape.com 2001-08-06 23:53:54 +00:00
parent 74120ef6ce
commit 85c8a81eba

View File

@ -45,7 +45,7 @@
*
* This is what we are checking for in this testcase -
*/
//-------------------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------
var UBound = 0;
var bug = '(none)';
var summary = 'Testing scope with nested functions';
@ -66,7 +66,7 @@ function a()
capture(this.toString());
}
this.f = function()
this.c = function()
{
capture(this.toString());
b();
@ -77,7 +77,7 @@ function a()
var obj = new a(); // captures actualvalues[0]
obj.f(); // captures actualvalues[1], actualvalues[2]
obj.c(); // captures actualvalues[1], actualvalues[2]
// The values we expect - see introduction above -
@ -87,9 +87,9 @@ expectedvalues[2] = cnGlobal;
//-------------------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------
test();
//-------------------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------