e51d6462a7
R=mvstanton@chromium.org TEST=mjsunit/regress/regress-builtinbust-5 Review URL: https://codereview.chromium.org/239033002 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@20766 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
14 lines
392 B
JavaScript
14 lines
392 B
JavaScript
// Copyright 2014 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
var a = [ 1, 2, 3 ];
|
|
var was_called = false;
|
|
function poison() { was_called = true; }
|
|
a.hasOwnProperty = poison;
|
|
Object.freeze(a);
|
|
|
|
assertThrows("a.unshift()", TypeError);
|
|
assertEquals(3, a.length);
|
|
assertFalse(was_called);
|