fix metadata for regexp.prototype.dotall

This commit is contained in:
Leo Balter 2017-04-27 18:24:48 -04:00
parent bfc9020d51
commit f2db2b6829
No known key found for this signature in database
GPG Key ID: 2C75F319D398E36B
7 changed files with 11 additions and 9 deletions

View File

@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: pending
esid: sec-get-regexp.prototype.dotall
description: >
get RegExp.prototype.dotAll.length is 0.
info: >

View File

@ -1,7 +1,7 @@
// Copyright (C) 2017 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: pending
esid: sec-get-regexp.prototype.dotall
description: >
RegExp.prototype.dotAll name
info: >

View File

@ -1,7 +1,7 @@
// Copyright (C) 2017 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: pending
esid: sec-get-regexp.prototype.dotall
description: >
`pending` property descriptor
info: >

View File

@ -2,15 +2,16 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-get-regexp.prototype.dotall
description: Invoked on an object without an [[OriginalFlags]] internal slot
esid: pending
info: >
get RegExp.prototype.dotAll
1. Let R be the this value.
2. If Type(R) is not Object, throw a TypeError exception.
3. If R does not have an [[OriginalFlags]] internal slot, throw a TypeError
exception.
3. If R does not have an [[OriginalFlags]] internal slot, then
a. If SameValue(R, %RegExpPrototype%) is true, return undefined.
b. Otherwise, throw a TypeError exception.
features: [regexp-dotall]
---*/

View File

@ -2,9 +2,9 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-get-regexp.prototype.dotall
description: >
`dotAll` accessor invoked on a non-object value
esid: pending
info: >
get RegExp.prototype.dotAll

View File

@ -1,7 +1,8 @@
// Copyright (C) 2017 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: pending
esid: sec-get-regexp.prototype.dotall
description: >
Return value of `undefined` when the "this" value is the RegExp prototype
object

View File

@ -2,9 +2,9 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-get-regexp.prototype.dotall
description: >
`dotAll` accessor function invoked on a RegExp instance
esid: pending
info: >
21.2.5.12 get RegExp.prototype.dotAll