Skip to content

Commit 8590a1a

Browse files
committed
Correct ommissions from the "JavaScript" group
1 parent 7e24798 commit 8590a1a

14 files changed

+15
-0
lines changed

features/accessor-methods.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Accessor methods
22
description: The `__defineGetter__()` and `__defineSetter__()` methods of objects bind a function to a property, which is called on setting or reading the property.
33
spec: https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-object.prototype-legacy-accessor-methods
4+
group: javascript
45
discouraged:
56
according_to:
67
- https://tc39.es/ecma262/multipage/additional-ecmascript-features-for-web-browsers.html#sec-additional-ecmascript-features-for-web-browsers

features/date-to-gmt-string.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: toGMTString()
22
description: The `toGMTString()` method of `Date` objects is an alias to the `toUTCString()` method.
33
spec: https://tc39.es/ecma262/multipage/additional-ecmascript-features-for-web-browsers.html#sec-date.prototype.togmtstring
4+
group: javascript
45
discouraged:
56
according_to:
67
- https://tc39.es/ecma262/multipage/additional-ecmascript-features-for-web-browsers.html#sec-additional-ecmascript-features-for-web-browsers

features/error-cause.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Error cause
22
description: The `cause` property of errors records the specific original cause of the error, particularly for errors that have been re-thrown.
33
spec: https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-installerrorcause
4+
group: javascript
45
compat_features:
56
- javascript.builtins.Error.Error.options_cause_parameter
67
- javascript.builtins.Error.cause

features/is-error.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: Error.isError()
22
description: The `Error.isError()` static method checks whether a value is an `Error` object.
33
spec: https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-error.iserror
4+
group: javascript
45
compat_features:
56
- javascript.builtins.Error.isError

features/object-hasown.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: Object.hasOwn()
22
description: The `Object.hasOwn()` static method checks whether an object has a given property. It's a more robust alternative to the `Object.prototype.hasOwnProperty()` method.
33
spec: https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-object.hasown
4+
group: javascript
45
compat_features:
56
- javascript.builtins.Object.hasOwn

features/object-object.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ description: Objects in JavaScript are collections of key-value pairs.
33
spec: https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-object-objects
44
status:
55
compute_from: javascript.builtins.Object
6+
group: javascript
67
compat_features:
78
- javascript.builtins.Object
89
- javascript.builtins.Object.Object

features/proto.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: __proto__
22
description: The `__proto__` property of objects partially exposes the prototype of an object.
33
spec: https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-object.prototype.__proto__
4+
group: javascript
45
discouraged:
56
according_to:
67
- https://tc39.es/ecma262/multipage/additional-ecmascript-features-for-web-browsers.html#sec-additional-ecmascript-features-for-web-browsers

features/regexp-compile.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: RegExp compile()
22
description: The `compile()` method of `RegExp` objects recompiles an existing regular expression object using a new pattern and flags.
33
spec: https://tc39.es/ecma262/multipage/additional-ecmascript-features-for-web-browsers.html#sec-regexp.prototype.compile
4+
group: regexps
45
discouraged:
56
according_to:
67
- https://tc39.es/ecma262/multipage/additional-ecmascript-features-for-web-browsers.html#sec-additional-ecmascript-features-for-web-browsers

features/regexp-escape.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: RegExp.escape()
22
description: The `RegExp.escape()` static method takes a string and replaces any characters that are potentially special characters of a regular expression with equivalent escape sequences. For example, `RegExp.escape("[abc]")` returns `"\\[abc\\]"`.
33
spec: https://tc39.es/ecma262/multipage/text-processing.html#sec-regexp.escape
4+
group: regexps
45
compat_features:
56
- javascript.builtins.RegExp.escape

features/regexp-static-properties.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: RegExp static properties
22
description: The `RegExp` object has several static properties to access the input and results of the most-recent regular expression match.
33
spec: https://github.com/tc39/proposal-regexp-legacy-features
4+
group: regexps
45
discouraged:
56
according_to:
67
- https://github.com/tc39/proposal-regexp-legacy-features

0 commit comments

Comments
 (0)