From fe494ed4d7d4f35712c92927edf801430b909cdc Mon Sep 17 00:00:00 2001
From: deathbearbrown <deathbearbrown@gmail.com>
Date: Thu, 27 Jul 2017 10:15:48 -0700
Subject: [PATCH] add esid to Dataview frontmatter

---
 test/built-ins/DataView/prototype/Symbol.toStringTag.js | 1 +
 test/built-ins/DataView/prototype/buffer/length.js      | 1 +
 test/built-ins/DataView/prototype/buffer/name.js        | 1 +
 test/built-ins/DataView/prototype/byteLength/length.js  | 1 +
 test/built-ins/DataView/prototype/byteLength/name.js    | 1 +
 test/built-ins/DataView/prototype/byteOffset/length.js  | 1 +
 test/built-ins/DataView/prototype/byteOffset/name.js    | 1 +
 test/built-ins/DataView/prototype/getFloat32/name.js    | 1 +
 test/built-ins/DataView/prototype/getFloat64/name.js    | 1 +
 test/built-ins/DataView/prototype/getInt16/name.js      | 1 +
 test/built-ins/DataView/prototype/getInt32/name.js      | 1 +
 test/built-ins/DataView/prototype/getInt8/length.js     | 1 +
 test/built-ins/DataView/prototype/getInt8/name.js       | 1 +
 test/built-ins/DataView/prototype/getUint16/name.js     | 1 +
 test/built-ins/DataView/prototype/getUint32/name.js     | 1 +
 test/built-ins/DataView/prototype/getUint8/length.js    | 1 +
 test/built-ins/DataView/prototype/getUint8/name.js      | 1 +
 test/built-ins/DataView/prototype/setFloat32/name.js    | 1 +
 test/built-ins/DataView/prototype/setFloat64/name.js    | 1 +
 test/built-ins/DataView/prototype/setInt16/name.js      | 1 +
 test/built-ins/DataView/prototype/setInt32/name.js      | 1 +
 test/built-ins/DataView/prototype/setInt8/length.js     | 1 +
 test/built-ins/DataView/prototype/setInt8/name.js       | 1 +
 test/built-ins/DataView/prototype/setUint16/name.js     | 1 +
 test/built-ins/DataView/prototype/setUint32/name.js     | 1 +
 test/built-ins/DataView/prototype/setUint8/length.js    | 1 +
 test/built-ins/DataView/prototype/setUint8/name.js      | 1 +
 27 files changed, 27 insertions(+)

diff --git a/test/built-ins/DataView/prototype/Symbol.toStringTag.js b/test/built-ins/DataView/prototype/Symbol.toStringTag.js
index 87fa327592..9e60018ad6 100644
--- a/test/built-ins/DataView/prototype/Symbol.toStringTag.js
+++ b/test/built-ins/DataView/prototype/Symbol.toStringTag.js
@@ -1,6 +1,7 @@
 // Copyright (C) 2015 the V8 project authors. All rights reserved.
 // This code is governed by the BSD license found in the LICENSE file.
 /*---
+esid: sec-dataview.prototype-@@tostringtag
 es6id: 24.2.4.21
 description: >
     `Symbol.toStringTag` property descriptor
diff --git a/test/built-ins/DataView/prototype/buffer/length.js b/test/built-ins/DataView/prototype/buffer/length.js
index 6d71e9f6c5..2998505dd0 100644
--- a/test/built-ins/DataView/prototype/buffer/length.js
+++ b/test/built-ins/DataView/prototype/buffer/length.js
@@ -2,6 +2,7 @@
 // This code is governed by the BSD license found in the LICENSE file.
 
 /*---
+esid: sec-get-dataview.prototype.buffer
 es6id: 24.2.4.1
 description: >
   get DataView.prototype.buffer.length is 0.
diff --git a/test/built-ins/DataView/prototype/buffer/name.js b/test/built-ins/DataView/prototype/buffer/name.js
index 50f4adccb2..b096d728a3 100644
--- a/test/built-ins/DataView/prototype/buffer/name.js
+++ b/test/built-ins/DataView/prototype/buffer/name.js
@@ -1,6 +1,7 @@
 // Copyright (C) 2015 the V8 project authors. All rights reserved.
 // This code is governed by the BSD license found in the LICENSE file.
 /*---
+esid: sec-get-dataview.prototype.buffer
 es6id: 24.2.4.2
 description: >
   get DataView.prototype.buffer
diff --git a/test/built-ins/DataView/prototype/byteLength/length.js b/test/built-ins/DataView/prototype/byteLength/length.js
index da9e6af88e..80bab43555 100644
--- a/test/built-ins/DataView/prototype/byteLength/length.js
+++ b/test/built-ins/DataView/prototype/byteLength/length.js
@@ -2,6 +2,7 @@
 // This code is governed by the BSD license found in the LICENSE file.
 
 /*---
+esid: sec-get-dataview.prototype.bytelength
 es6id: 24.2.4.2
 description: >
   get DataView.prototype.byteLength.length is 0.
diff --git a/test/built-ins/DataView/prototype/byteLength/name.js b/test/built-ins/DataView/prototype/byteLength/name.js
index ca4456f684..8f403077a3 100644
--- a/test/built-ins/DataView/prototype/byteLength/name.js
+++ b/test/built-ins/DataView/prototype/byteLength/name.js
@@ -1,6 +1,7 @@
 // Copyright (C) 2015 the V8 project authors. All rights reserved.
 // This code is governed by the BSD license found in the LICENSE file.
 /*---
+esid: sec-get-dataview.prototype.bytelength
 es6id: 24.2.4.2
 description: >
   get DataView.prototype.byteLength
diff --git a/test/built-ins/DataView/prototype/byteOffset/length.js b/test/built-ins/DataView/prototype/byteOffset/length.js
index d6290c82bf..c1cf057696 100644
--- a/test/built-ins/DataView/prototype/byteOffset/length.js
+++ b/test/built-ins/DataView/prototype/byteOffset/length.js
@@ -2,6 +2,7 @@
 // This code is governed by the BSD license found in the LICENSE file.
 
 /*---
+esid: sec-get-dataview.prototype.byteoffset
 es6id: 24.2.4.3
 description: >
   get DataView.prototype.byteOffset.length is 0.
diff --git a/test/built-ins/DataView/prototype/byteOffset/name.js b/test/built-ins/DataView/prototype/byteOffset/name.js
index 0f34382f8e..8ea782d41e 100644
--- a/test/built-ins/DataView/prototype/byteOffset/name.js
+++ b/test/built-ins/DataView/prototype/byteOffset/name.js
@@ -1,6 +1,7 @@
 // Copyright (C) 2015 the V8 project authors. All rights reserved.
 // This code is governed by the BSD license found in the LICENSE file.
 /*---
+esid: sec-get-dataview.prototype.byteoffset
 es6id: 24.2.4.2
 description: >
   get DataView.prototype.byteOffset
diff --git a/test/built-ins/DataView/prototype/getFloat32/name.js b/test/built-ins/DataView/prototype/getFloat32/name.js
index b0afb76fba..d55f631cd6 100644
--- a/test/built-ins/DataView/prototype/getFloat32/name.js
+++ b/test/built-ins/DataView/prototype/getFloat32/name.js
@@ -2,6 +2,7 @@
 // This code is governed by the BSD license found in the LICENSE file.
 
 /*---
+esid: sec-dataview.prototype.getfloat32
 es6id: 24.2.4.5
 description: >
   DataView.prototype.getFloat32.name is "getFloat32".
diff --git a/test/built-ins/DataView/prototype/getFloat64/name.js b/test/built-ins/DataView/prototype/getFloat64/name.js
index 7d7301c4fd..a4713824cf 100644
--- a/test/built-ins/DataView/prototype/getFloat64/name.js
+++ b/test/built-ins/DataView/prototype/getFloat64/name.js
@@ -2,6 +2,7 @@
 // This code is governed by the BSD license found in the LICENSE file.
 
 /*---
+esid: sec-dataview.prototype.getfloat64
 es6id: 24.2.4.6
 description: >
   DataView.prototype.getFloat64.name is "getFloat64".
diff --git a/test/built-ins/DataView/prototype/getInt16/name.js b/test/built-ins/DataView/prototype/getInt16/name.js
index b61bb435e9..33b0bd61a2 100644
--- a/test/built-ins/DataView/prototype/getInt16/name.js
+++ b/test/built-ins/DataView/prototype/getInt16/name.js
@@ -2,6 +2,7 @@
 // This code is governed by the BSD license found in the LICENSE file.
 
 /*---
+esid: sec-dataview.prototype.getint16
 es6id: 24.2.4.8
 description: >
   DataView.prototype.getInt16.name is "getInt16".
diff --git a/test/built-ins/DataView/prototype/getInt32/name.js b/test/built-ins/DataView/prototype/getInt32/name.js
index 1e1e408c04..d824b65684 100644
--- a/test/built-ins/DataView/prototype/getInt32/name.js
+++ b/test/built-ins/DataView/prototype/getInt32/name.js
@@ -2,6 +2,7 @@
 // This code is governed by the BSD license found in the LICENSE file.
 
 /*---
+esid: sec-dataview.prototype.getint32
 es6id: 24.2.4.9
 description: >
   DataView.prototype.getInt32.name is "getInt32".
diff --git a/test/built-ins/DataView/prototype/getInt8/length.js b/test/built-ins/DataView/prototype/getInt8/length.js
index c1ca98b455..926adf1864 100644
--- a/test/built-ins/DataView/prototype/getInt8/length.js
+++ b/test/built-ins/DataView/prototype/getInt8/length.js
@@ -2,6 +2,7 @@
 // This code is governed by the BSD license found in the LICENSE file.
 
 /*---
+esid: sec-dataview.prototype.getint8
 es6id: 24.2.4.7
 description: >
   DataView.prototype.getInt8.length is 1.
diff --git a/test/built-ins/DataView/prototype/getInt8/name.js b/test/built-ins/DataView/prototype/getInt8/name.js
index 8fb9493a54..eabf608c1a 100644
--- a/test/built-ins/DataView/prototype/getInt8/name.js
+++ b/test/built-ins/DataView/prototype/getInt8/name.js
@@ -2,6 +2,7 @@
 // This code is governed by the BSD license found in the LICENSE file.
 
 /*---
+esid: sec-dataview.prototype.getint8
 es6id: 24.2.4.7
 description: >
   DataView.prototype.getInt8.name is "getInt8".
diff --git a/test/built-ins/DataView/prototype/getUint16/name.js b/test/built-ins/DataView/prototype/getUint16/name.js
index 754db7d793..5e33f75623 100644
--- a/test/built-ins/DataView/prototype/getUint16/name.js
+++ b/test/built-ins/DataView/prototype/getUint16/name.js
@@ -2,6 +2,7 @@
 // This code is governed by the BSD license found in the LICENSE file.
 
 /*---
+esid: sec-dataview.prototype.getuint16
 es6id: 24.2.4.11
 description: >
   DataView.prototype.getUint16.name is "getUint16".
diff --git a/test/built-ins/DataView/prototype/getUint32/name.js b/test/built-ins/DataView/prototype/getUint32/name.js
index fc022c26da..6dfcc24484 100644
--- a/test/built-ins/DataView/prototype/getUint32/name.js
+++ b/test/built-ins/DataView/prototype/getUint32/name.js
@@ -2,6 +2,7 @@
 // This code is governed by the BSD license found in the LICENSE file.
 
 /*---
+esid: sec-dataview.prototype.getuint32
 es6id: 24.2.4.12
 description: >
   DataView.prototype.getUint32.name is "getUint32".
diff --git a/test/built-ins/DataView/prototype/getUint8/length.js b/test/built-ins/DataView/prototype/getUint8/length.js
index cce0cd844a..4de94e5282 100644
--- a/test/built-ins/DataView/prototype/getUint8/length.js
+++ b/test/built-ins/DataView/prototype/getUint8/length.js
@@ -2,6 +2,7 @@
 // This code is governed by the BSD license found in the LICENSE file.
 
 /*---
+esid: sec-dataview.prototype.getuint8
 es6id: 24.2.4.10
 description: >
   DataView.prototype.getUint8.length is 1.
diff --git a/test/built-ins/DataView/prototype/getUint8/name.js b/test/built-ins/DataView/prototype/getUint8/name.js
index 269197af46..10c9bda7f6 100644
--- a/test/built-ins/DataView/prototype/getUint8/name.js
+++ b/test/built-ins/DataView/prototype/getUint8/name.js
@@ -2,6 +2,7 @@
 // This code is governed by the BSD license found in the LICENSE file.
 
 /*---
+esid: sec-dataview.prototype.getuint8
 es6id: 24.2.4.10
 description: >
   DataView.prototype.getUint8.name is "getUint8".
diff --git a/test/built-ins/DataView/prototype/setFloat32/name.js b/test/built-ins/DataView/prototype/setFloat32/name.js
index 6435989ebd..618f491c04 100644
--- a/test/built-ins/DataView/prototype/setFloat32/name.js
+++ b/test/built-ins/DataView/prototype/setFloat32/name.js
@@ -2,6 +2,7 @@
 // This code is governed by the BSD license found in the LICENSE file.
 
 /*---
+esid: sec-dataview.prototype.setfloat32
 es6id: 24.2.4.13
 description: >
   DataView.prototype.setFloat32.name is "setFloat32".
diff --git a/test/built-ins/DataView/prototype/setFloat64/name.js b/test/built-ins/DataView/prototype/setFloat64/name.js
index ffacf4048c..b6ea69a1db 100644
--- a/test/built-ins/DataView/prototype/setFloat64/name.js
+++ b/test/built-ins/DataView/prototype/setFloat64/name.js
@@ -2,6 +2,7 @@
 // This code is governed by the BSD license found in the LICENSE file.
 
 /*---
+esid: sec-dataview.prototype.setfloat64
 es6id: 24.2.4.14
 description: >
   DataView.prototype.setFloat64.name is "setFloat64".
diff --git a/test/built-ins/DataView/prototype/setInt16/name.js b/test/built-ins/DataView/prototype/setInt16/name.js
index 44591dd4a2..0ff027edc9 100644
--- a/test/built-ins/DataView/prototype/setInt16/name.js
+++ b/test/built-ins/DataView/prototype/setInt16/name.js
@@ -2,6 +2,7 @@
 // This code is governed by the BSD license found in the LICENSE file.
 
 /*---
+esid: sec-dataview.prototype.setint16
 es6id: 24.2.4.16
 description: >
   DataView.prototype.setInt16.name is "setInt16".
diff --git a/test/built-ins/DataView/prototype/setInt32/name.js b/test/built-ins/DataView/prototype/setInt32/name.js
index e62e1bf463..9492ba4e1e 100644
--- a/test/built-ins/DataView/prototype/setInt32/name.js
+++ b/test/built-ins/DataView/prototype/setInt32/name.js
@@ -2,6 +2,7 @@
 // This code is governed by the BSD license found in the LICENSE file.
 
 /*---
+esid: sec-dataview.prototype.setint32
 es6id: 24.2.4.17
 description: >
   DataView.prototype.setInt32.name is "setInt32".
diff --git a/test/built-ins/DataView/prototype/setInt8/length.js b/test/built-ins/DataView/prototype/setInt8/length.js
index 8120cd2117..b98b8491de 100644
--- a/test/built-ins/DataView/prototype/setInt8/length.js
+++ b/test/built-ins/DataView/prototype/setInt8/length.js
@@ -2,6 +2,7 @@
 // This code is governed by the BSD license found in the LICENSE file.
 
 /*---
+esid: sec-dataview.prototype.setint8
 es6id: 24.2.4.15
 description: >
   DataView.prototype.setInt8.length is 2.
diff --git a/test/built-ins/DataView/prototype/setInt8/name.js b/test/built-ins/DataView/prototype/setInt8/name.js
index e0c1eafec3..c154fcae2d 100644
--- a/test/built-ins/DataView/prototype/setInt8/name.js
+++ b/test/built-ins/DataView/prototype/setInt8/name.js
@@ -2,6 +2,7 @@
 // This code is governed by the BSD license found in the LICENSE file.
 
 /*---
+esid: sec-dataview.prototype.setint8
 es6id: 24.2.4.15
 description: >
   DataView.prototype.setInt8.name is "setInt8".
diff --git a/test/built-ins/DataView/prototype/setUint16/name.js b/test/built-ins/DataView/prototype/setUint16/name.js
index 957241547b..ab83359ada 100644
--- a/test/built-ins/DataView/prototype/setUint16/name.js
+++ b/test/built-ins/DataView/prototype/setUint16/name.js
@@ -2,6 +2,7 @@
 // This code is governed by the BSD license found in the LICENSE file.
 
 /*---
+esid: sec-dataview.prototype.setuint16
 es6id: 24.2.4.19
 description: >
   DataView.prototype.setUint16.name is "setUint16".
diff --git a/test/built-ins/DataView/prototype/setUint32/name.js b/test/built-ins/DataView/prototype/setUint32/name.js
index dda373f1f0..e1e10408cb 100644
--- a/test/built-ins/DataView/prototype/setUint32/name.js
+++ b/test/built-ins/DataView/prototype/setUint32/name.js
@@ -2,6 +2,7 @@
 // This code is governed by the BSD license found in the LICENSE file.
 
 /*---
+esid: sec-dataview.prototype.setuint32
 es6id: 24.2.4.20
 description: >
   DataView.prototype.setUint32.name is "setUint32".
diff --git a/test/built-ins/DataView/prototype/setUint8/length.js b/test/built-ins/DataView/prototype/setUint8/length.js
index 6c868a7da7..c97f79378c 100644
--- a/test/built-ins/DataView/prototype/setUint8/length.js
+++ b/test/built-ins/DataView/prototype/setUint8/length.js
@@ -2,6 +2,7 @@
 // This code is governed by the BSD license found in the LICENSE file.
 
 /*---
+esid: sec-dataview.prototype.setuint8
 es6id: 24.2.4.18
 description: >
   DataView.prototype.setUint8.length is 2.
diff --git a/test/built-ins/DataView/prototype/setUint8/name.js b/test/built-ins/DataView/prototype/setUint8/name.js
index 8333822b11..b4394fb472 100644
--- a/test/built-ins/DataView/prototype/setUint8/name.js
+++ b/test/built-ins/DataView/prototype/setUint8/name.js
@@ -2,6 +2,7 @@
 // This code is governed by the BSD license found in the LICENSE file.
 
 /*---
+esid: sec-dataview.prototype.setuint8
 es6id: 24.2.4.18
 description: >
   DataView.prototype.setUint8.name is "setUint8".
-- 
GitLab