blob: c0485f0407c9f6ad8fb4daa77cf17f5e89d451d0 [file] [log] [blame]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
function test(arg0, arg1) {
this.prop0 = arg0;
}
var obj = new test(1,2);
Object.defineProperty(obj, "a", {get : function(){ return 10; }});
obj[0] = 10;
WScript.Echo(obj.prop0);
WScript.Echo(obj[0]);