-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathapplyBailout.js
33 lines (32 loc) · 1.05 KB
/
applyBailout.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
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
function test0() {
var obj0 = {};
var v9449 = {
create: function () {
return function bar() {
arguments[2];
this.method0.apply(this, arguments);
};
}
};
var v9451 = obj0;
v9451.v9452 = v9449.create();
v9451.v9452.prototype = {
method0: function () {
this;
}
};
v9451.v9454 = v9449.create();
v9451.v9454.prototype = {
method0: function () {
this.v9459 = new v9451.v9452();
}
};
var v9471 = new v9451.v9454();
var v9472 = new v9451.v9454();
}
test0();
WScript.Echo("Passed");