# Copyright 2013 the V8 project authors. All rights reserved. # Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # # THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY # EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE # DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY # DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. This performs a number of different tests on JavaScript getters and setters. On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". the get set object declaration syntax PASS o1.b is 8 PASS o1.b is 11 __defineGetter__ and __defineSetter__ PASS o2.b is 8 PASS o2.b is 11 Setting a value without having a setter PASS o3.x = 10; o3.x is 42 Getting a value without having a getter PASS o4.x is undefined. __lookupGetter__ and __lookupSetter__ PASS o4.__lookupGetter__('b') is getB PASS o4.__lookupSetter__('b') is setB __defineGetter__ and __defineSetter__ with various invalid arguments PASS o5.__defineSetter__('a', null) threw exception TypeError: Object.prototype.__defineSetter__: Expecting function. PASS o5.__defineSetter__('a', o5) threw exception TypeError: Object.prototype.__defineSetter__: Expecting function. PASS o5.__defineGetter__('a', null) threw exception TypeError: Object.prototype.__defineGetter__: Expecting function. PASS o5.__defineGetter__('a', o5) threw exception TypeError: Object.prototype.__defineGetter__: Expecting function. setters and getters with exceptions PASS x = o6.x threw exception Exception in get. PASS x is 0 PASS o6.x = 42 threw exception Exception in set. Defining a setter should also define a getter for the same property which returns undefined. Thus, a getter defined on the prototype should not be called. PASS o7.x is undefined. If an object has a property and its prototype has a setter function for that property, then setting the property should set the property directly and not call the setter function. PASS o8.numSets is 0 PASS typeof testObj.getter is 'string' the get set with string property name PASS o9.b is 8 PASS o9.b is 11 the get set with numeric property name PASS o10[42] is 8 PASS o10[42] is 11 PASS successfullyParsed is true TEST COMPLETE