-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathforInObjectAddDelete.js
47 lines (39 loc) · 1.21 KB
/
forInObjectAddDelete.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
//
//NOTE: this may break if enumeration order policy is changed in Chakra but that doesn't mean we have a bug in TTD
//
var x = { a: 1, b: 2};
var obj = { a: 1, b: 2, c: 15};
WScript.SetTimeout(testFunction, 50);
/////////////////
function testFunction()
{
telemetryLog("1st enumeration", true);
for(var i in x)
{
if(x[i] == 1)
{
delete x.a;
delete x.b;
x.c = 3;
x.d = 4;
}
else
telemetryLog(`${x[i]}`, true);
}
telemetryLog("2nd enumeration", true);
for (var i in obj) {
if (obj[i] == 1) {
delete obj.a;
delete obj.b;
obj.c = 3;
obj.d = 4;
}
else
telemetryLog(`${obj[i]}`, true);
}
emitTTDLog(ttdLogURI);
}