blob: 92f7eb9398d7fca671adc61b2b7377e1dc3301a8 [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.
//-------------------------------------------------------------------------------------------------------
var o = { blah: "abc" }
Object.defineProperty(o, 'hello', {
get: function() { return 42; },
set: function() { },
enumerable: true
})
for (var p in o) {
print(p.normalize())
}
print("PASS")