msaboff@apple.com | 6ce5b2c | 2016-09-03 00:12:16 +0000 | [diff] [blame] | 1 | //------------------------------------------------------------------------------------------------------- |
| 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 | |
| 6 | function 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 | } |
| 32 | test0(); |
| 33 | WScript.Echo("Passed"); |