blob: 46590fe4d59567d9bbf70d0c9cb97a6302d66b90 [file] [log] [blame]
// 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-%typedarray%.prototype-@@iterator
description: >
_TypedArray_.prototype has no own property @@iterator
includes: [testTypedArray.js]
features: [Symbol.iterator, TypedArray]
---*/
testWithTypedArrayConstructors(function(TA) {
assert.sameValue(TA.prototype.hasOwnProperty(Symbol.iterator), false);
});