Commit aa396c57 authored by ricow@chromium.org's avatar ricow@chromium.org

Allow getters and setters on JSArray elements.

This fixes bug 900 

Review URL: http://codereview.chromium.org/5959009

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@6158 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 394f240e
......@@ -2932,7 +2932,6 @@ MaybeObject* JSObject::DefineGetterSetter(String* name,
uint32_t index = 0;
bool is_element = name->AsArrayIndex(&index);
if (is_element && IsJSArray()) return Heap::undefined_value();
if (is_element) {
switch (GetElementsKind()) {
......@@ -6945,13 +6944,13 @@ MaybeObject* JSObject::SetFastElement(uint32_t index,
FixedArray* elms = FixedArray::cast(elms_obj);
uint32_t elms_length = static_cast<uint32_t>(elms->length());
if (check_prototype && !IsJSArray() &&
(index >= elms_length || elms->get(index)->IsTheHole())) {
if (SetElementWithCallbackSetterInPrototypes(index, value)) {
return value;
}
if (check_prototype &&
(index >= elms_length || elms->get(index)->IsTheHole()) &&
SetElementWithCallbackSetterInPrototypes(index, value)) {
return value;
}
// Check whether there is extra space in fixed array..
if (index < elms_length) {
elms->set(index, value);
......@@ -7080,7 +7079,7 @@ MaybeObject* JSObject::SetElementWithoutInterceptor(uint32_t index,
}
} else {
// Index not already used. Look for an accessor in the prototype chain.
if (check_prototype && !IsJSArray() &&
if (check_prototype &&
SetElementWithCallbackSetterInPrototypes(index, value)) {
return value;
}
......
......@@ -81,19 +81,6 @@ testArray();
expected[0] = 111;
testArray();
// The functionality is not implemented for arrays due to performance issues.
var a = [ 1 ];
a.__defineGetter__('2', function() { return 7; });
assertEquals(undefined, a[2]);
assertEquals(1, a.length);
var b = 0;
a.__defineSetter__('5', function(y) { b = y; });
assertEquals(1, a.length);
a[5] = 42;
assertEquals(0, b);
assertEquals(42, a[5]);
assertEquals(6, a.length);
// Using a setter where only a getter is defined throws an exception.
var q = {};
q.__defineGetter__('0', function() { return 42; });
......
// Copyright 2011 the V8 project authors. All rights reserved.
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * 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.
// * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived
// from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND 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 THE COPYRIGHT
// OWNER OR 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.
// Check that we allow accessors on JSArray elements.
var a = [];
var b = {}
Object.defineProperty(a, "1", {get: function() {return "foo";}});
Object.defineProperty(
b, "1", {get: function() {return "bar";}, set: function() {this.x = 42;}});
assertEquals(a[1], 'foo');
assertEquals(b[1], 'bar');
// Make sure we can't overwrite an accessor, but that the setter is
// instead called.
b[1] = 'foobar';
assertEquals(b[1], 'bar');
assertEquals(b.x, 42);
var desc = Object.getOwnPropertyDescriptor(b, "1");
assertEquals(desc['writable'], undefined);
assertFalse(desc['enumerable']);
assertFalse(desc['configurable']);
......@@ -653,8 +653,6 @@ js1_5/extensions/regress-336409-1: FAIL_OK
js1_5/extensions/regress-336409-2: FAIL_OK
js1_5/extensions/regress-336410-2: FAIL_OK
js1_5/extensions/regress-341956-01: FAIL_OK
js1_5/extensions/regress-341956-02: FAIL_OK
js1_5/extensions/regress-341956-03: FAIL_OK
js1_5/extensions/regress-345967: FAIL_OK
js1_5/extensions/regress-346494-01: FAIL_OK
js1_5/extensions/regress-346494: FAIL_OK
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment