| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- function outer(val)
- {
- var iic = val + 1;
- function inner() { return iic++; }
- return inner;
- }
- var fouter = outer(3);
- var gouter = outer(5);
- function ctr(val)
- {
- var iic = val;
- this.inc = function () { return iic++; }
- this.dec = function () { return iic--; }
- }
- var fctr = new ctr(3);
- var fctr2 = fctr;
- var gctr = new ctr(5);
- WScript.SetTimeout(testFunction, 50);
- /////////////////
- function testFunction()
- {
- ////
- fouter();
- ////
- telemetryLog(`fouter(): ${fouter()}`, true); //5
- telemetryLog(`gouter(): ${gouter()}`, true); //6
- ////
- fctr.inc();
- ////
- telemetryLog(`fctr.inc(): ${fctr.inc()}`, true); //4
- telemetryLog(`gctr.inc(): ${gctr.inc()}`, true); //5
- ////
- fctr2.dec();
- fctr2.dec();
- ////
- telemetryLog(`post decrement -- fctr.inc(): ${fctr.inc()}`, true); //3
- telemetryLog(`post decrement -- gctr.inc(): ${gctr.inc()}`, true); //6
- emitTTDLog(ttdLogURI);
- }
|