Add missing features

This commit is contained in:
Rick Waldron 2017-12-21 16:46:44 -05:00
parent 91460f90de
commit 5155397373
20 changed files with 20 additions and 0 deletions

View File

@ -8,6 +8,7 @@ description: >
isConstructor isConstructor
includes: [isConstructor.js] includes: [isConstructor.js]
features: [Reflect.construct]
---*/ ---*/
assert.sameValue(typeof isConstructor, "function"); assert.sameValue(typeof isConstructor, "function");

View File

@ -9,6 +9,7 @@ description: >
of chapter 17 of the ECMAScript Language Specification. of chapter 17 of the ECMAScript Language Specification.
author: Norbert Lindenberg author: Norbert Lindenberg
includes: [isConstructor.js] includes: [isConstructor.js]
features: [Reflect.construct]
---*/ ---*/
var compareFn = Object.getOwnPropertyDescriptor(Intl.Collator.prototype, "compare").get; var compareFn = Object.getOwnPropertyDescriptor(Intl.Collator.prototype, "compare").get;

View File

@ -10,6 +10,7 @@ description: >
ECMAScript Language Specification. ECMAScript Language Specification.
author: Norbert Lindenberg author: Norbert Lindenberg
includes: [isConstructor.js] includes: [isConstructor.js]
features: [Reflect.construct]
---*/ ---*/
var compareFn = new Intl.Collator().compare; var compareFn = new Intl.Collator().compare;

View File

@ -9,6 +9,7 @@ description: >
chapter 17 of the ECMAScript Language Specification. chapter 17 of the ECMAScript Language Specification.
author: Norbert Lindenberg author: Norbert Lindenberg
includes: [isConstructor.js] includes: [isConstructor.js]
features: [Reflect.construct]
---*/ ---*/
assert.sameValue(Object.prototype.toString.call(Intl.Collator.prototype.resolvedOptions), "[object Function]", assert.sameValue(Object.prototype.toString.call(Intl.Collator.prototype.resolvedOptions), "[object Function]",

View File

@ -9,6 +9,7 @@ description: >
chapter 17 of the ECMAScript Language Specification. chapter 17 of the ECMAScript Language Specification.
author: Norbert Lindenberg author: Norbert Lindenberg
includes: [isConstructor.js] includes: [isConstructor.js]
features: [Reflect.construct]
---*/ ---*/
assert.sameValue(Object.prototype.toString.call(Intl.Collator.supportedLocalesOf), "[object Function]", assert.sameValue(Object.prototype.toString.call(Intl.Collator.supportedLocalesOf), "[object Function]",

View File

@ -9,6 +9,7 @@ description: >
chapter 17 of the ECMAScript Language Specification. chapter 17 of the ECMAScript Language Specification.
author: Norbert Lindenberg author: Norbert Lindenberg
includes: [isConstructor.js] includes: [isConstructor.js]
features: [Reflect.construct]
---*/ ---*/
assert.sameValue(Object.prototype.toString.call(Date.prototype.toLocaleDateString), "[object Function]", assert.sameValue(Object.prototype.toString.call(Date.prototype.toLocaleDateString), "[object Function]",

View File

@ -9,6 +9,7 @@ description: >
the ECMAScript Language Specification. the ECMAScript Language Specification.
author: Norbert Lindenberg author: Norbert Lindenberg
includes: [isConstructor.js] includes: [isConstructor.js]
features: [Reflect.construct]
---*/ ---*/
assert.sameValue(Object.prototype.toString.call(Date.prototype.toLocaleString), "[object Function]", assert.sameValue(Object.prototype.toString.call(Date.prototype.toLocaleString), "[object Function]",

View File

@ -9,6 +9,7 @@ description: >
chapter 17 of the ECMAScript Language Specification. chapter 17 of the ECMAScript Language Specification.
author: Norbert Lindenberg author: Norbert Lindenberg
includes: [isConstructor.js] includes: [isConstructor.js]
features: [Reflect.construct]
---*/ ---*/
assert.sameValue(Object.prototype.toString.call(Date.prototype.toLocaleTimeString), "[object Function]", assert.sameValue(Object.prototype.toString.call(Date.prototype.toLocaleTimeString), "[object Function]",

View File

@ -10,6 +10,7 @@ description: >
Specification. Specification.
author: Norbert Lindenberg author: Norbert Lindenberg
includes: [isConstructor.js] includes: [isConstructor.js]
features: [Reflect.construct]
---*/ ---*/
var formatFn = Object.getOwnPropertyDescriptor(Intl.DateTimeFormat.prototype, "format").get; var formatFn = Object.getOwnPropertyDescriptor(Intl.DateTimeFormat.prototype, "format").get;

View File

@ -10,6 +10,7 @@ description: >
ECMAScript Language Specification. ECMAScript Language Specification.
author: Norbert Lindenberg author: Norbert Lindenberg
includes: [isConstructor.js] includes: [isConstructor.js]
features: [Reflect.construct]
---*/ ---*/
var formatFn = new Intl.DateTimeFormat().format; var formatFn = new Intl.DateTimeFormat().format;

View File

@ -9,6 +9,7 @@ description: >
of chapter 17 of the ECMAScript Language Specification. of chapter 17 of the ECMAScript Language Specification.
author: Norbert Lindenberg author: Norbert Lindenberg
includes: [isConstructor.js] includes: [isConstructor.js]
features: [Reflect.construct]
---*/ ---*/
assert.sameValue(Object.prototype.toString.call(Intl.DateTimeFormat.prototype.resolvedOptions), "[object Function]", assert.sameValue(Object.prototype.toString.call(Intl.DateTimeFormat.prototype.resolvedOptions), "[object Function]",

View File

@ -9,6 +9,7 @@ description: >
chapter 17 of the ECMAScript Language Specification. chapter 17 of the ECMAScript Language Specification.
author: Norbert Lindenberg author: Norbert Lindenberg
includes: [isConstructor.js] includes: [isConstructor.js]
features: [Reflect.construct]
---*/ ---*/
assert.sameValue(Object.prototype.toString.call(Intl.DateTimeFormat.supportedLocalesOf), "[object Function]", assert.sameValue(Object.prototype.toString.call(Intl.DateTimeFormat.supportedLocalesOf), "[object Function]",

View File

@ -9,6 +9,7 @@ description: >
the ECMAScript Language Specification. the ECMAScript Language Specification.
author: Norbert Lindenberg author: Norbert Lindenberg
includes: [isConstructor.js] includes: [isConstructor.js]
features: [Reflect.construct]
---*/ ---*/
assert.sameValue(Object.prototype.toString.call(Number.prototype.toLocaleString), "[object Function]", assert.sameValue(Object.prototype.toString.call(Number.prototype.toLocaleString), "[object Function]",

View File

@ -10,6 +10,7 @@ description: >
Specification. Specification.
author: Norbert Lindenberg author: Norbert Lindenberg
includes: [isConstructor.js] includes: [isConstructor.js]
features: [Reflect.construct]
---*/ ---*/
var formatFn = Object.getOwnPropertyDescriptor(Intl.NumberFormat.prototype, "format").get; var formatFn = Object.getOwnPropertyDescriptor(Intl.NumberFormat.prototype, "format").get;

View File

@ -10,6 +10,7 @@ description: >
ECMAScript Language Specification. ECMAScript Language Specification.
author: Norbert Lindenberg author: Norbert Lindenberg
includes: [isConstructor.js] includes: [isConstructor.js]
features: [Reflect.construct]
---*/ ---*/
var formatFn = new Intl.NumberFormat().format; var formatFn = new Intl.NumberFormat().format;

View File

@ -9,6 +9,7 @@ description: >
chapter 17 of the ECMAScript Language Specification. chapter 17 of the ECMAScript Language Specification.
author: Norbert Lindenberg author: Norbert Lindenberg
includes: [isConstructor.js] includes: [isConstructor.js]
features: [Reflect.construct]
---*/ ---*/
assert.sameValue(Object.prototype.toString.call(Intl.NumberFormat.prototype.resolvedOptions), "[object Function]", assert.sameValue(Object.prototype.toString.call(Intl.NumberFormat.prototype.resolvedOptions), "[object Function]",

View File

@ -9,6 +9,7 @@ description: >
chapter 17 of the ECMAScript Language Specification. chapter 17 of the ECMAScript Language Specification.
author: Norbert Lindenberg author: Norbert Lindenberg
includes: [isConstructor.js] includes: [isConstructor.js]
features: [Reflect.construct]
---*/ ---*/
assert.sameValue(Object.prototype.toString.call(Intl.NumberFormat.supportedLocalesOf), "[object Function]", assert.sameValue(Object.prototype.toString.call(Intl.NumberFormat.supportedLocalesOf), "[object Function]",

View File

@ -9,6 +9,7 @@ description: >
ECMAScript Language Specification. ECMAScript Language Specification.
author: Zibi Braniecki author: Zibi Braniecki
includes: [isConstructor.js] includes: [isConstructor.js]
features: [Reflect.construct]
---*/ ---*/
assert.sameValue(Object.prototype.toString.call(Intl.PluralRules.prototype.resolvedOptions), "[object Function]", assert.sameValue(Object.prototype.toString.call(Intl.PluralRules.prototype.resolvedOptions), "[object Function]",

View File

@ -9,6 +9,7 @@ description: >
ECMAScript Language Specification. ECMAScript Language Specification.
author: Zibi Braniecki author: Zibi Braniecki
includes: [isConstructor.js] includes: [isConstructor.js]
features: [Reflect.construct]
---*/ ---*/
assert.sameValue(Object.prototype.toString.call(Intl.PluralRules.supportedLocalesOf), "[object Function]", assert.sameValue(Object.prototype.toString.call(Intl.PluralRules.supportedLocalesOf), "[object Function]",

View File

@ -9,6 +9,7 @@ description: >
the ECMAScript Language Specification. the ECMAScript Language Specification.
author: Norbert Lindenberg author: Norbert Lindenberg
includes: [isConstructor.js] includes: [isConstructor.js]
features: [Reflect.construct]
---*/ ---*/
assert.sameValue(Object.prototype.toString.call(String.prototype.localeCompare), "[object Function]", assert.sameValue(Object.prototype.toString.call(String.prototype.localeCompare), "[object Function]",