diff options
Diffstat (limited to 'js/src/tests/test262/built-ins/JSON/parse/reviver-array-length-get-err.js')
-rw-r--r-- | js/src/tests/test262/built-ins/JSON/parse/reviver-array-length-get-err.js | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/JSON/parse/reviver-array-length-get-err.js b/js/src/tests/test262/built-ins/JSON/parse/reviver-array-length-get-err.js new file mode 100644 index 0000000000..1004af33e0 --- /dev/null +++ b/js/src/tests/test262/built-ins/JSON/parse/reviver-array-length-get-err.js @@ -0,0 +1,40 @@ +// Copyright (C) 2016 the V8 project authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +esid: sec-internalizejsonproperty +description: > + Abrupt completion from array "length" property access while reviving +info: | + JSON.parse ( text [ , reviver ] ) + + [...] + 7. If IsCallable(reviver) is true, then + [...] + e. Return ? InternalizeJSONProperty(root, rootName). + + Runtime Semantics: InternalizeJSONProperty ( holder, name) + + 1. Let val be ? Get(holder, name). + 2. If Type(val) is Object, then + a. Let isArray be ? IsArray(val). + b. If isArray is true, then + i. Set I to 0. + ii. Let len be ? ToLength(? Get(val, "length")). +features: [Proxy] +---*/ + +var badLength = new Proxy([], { + get: function(_, name) { + if (name === 'length') { + throw new Test262Error(); + } + } +}); + +assert.throws(Test262Error, function() { + JSON.parse('[0,0]', function() { + this[1] = badLength; + }); +}); + +reportCompare(0, 0); |