name.js (417B)
1 // Copyright (C) 2016 the V8 project authors. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 esid: sec-dataview-constructor 6 description: > 7 The name property of DataView is "DataView" 8 includes: [propertyHelper.js] 9 ---*/ 10 11 verifyProperty(DataView, "name", { 12 value: "DataView", 13 writable: false, 14 enumerable: false, 15 configurable: true 16 }); 17 18 reportCompare(0, 0);