blob: 08c1362c134c1fd2c03695d5c3dff12fc184bf23 [file] [log] [blame]
msaboff@apple.com6ce5b2c2016-09-03 00:12:16 +00001//-------------------------------------------------------------------------------------------------------
2// Copyright (C) Microsoft. All rights reserved.
3// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
4//-------------------------------------------------------------------------------------------------------
5
6function test0() {
7 var obj0 = {};
8 var v9449 = {
9 create: function () {
10 return function bar() {
11 arguments[2];
12 this.method0.apply(this, arguments);
13 };
14 }
15 };
16 var v9451 = obj0;
17 v9451.v9452 = v9449.create();
18 v9451.v9452.prototype = {
19 method0: function () {
20 this;
21 }
22 };
23 v9451.v9454 = v9449.create();
24 v9451.v9454.prototype = {
25 method0: function () {
26 this.v9459 = new v9451.v9452();
27 }
28 };
29 var v9471 = new v9451.v9454();
30 var v9472 = new v9451.v9454();
31}
32test0();
33WScript.Echo("Passed");