HomeSort by relevance Sort by last modified time
    Searched refs:species (Results 1 - 14 of 14) sorted by null

  /external/v8/test/mjsunit/regress/
regress-crbug-592340.js 6 Object.prototype[Symbol.species] = MyArray;
7 delete Array[Symbol.species];
regress-crbug-575314.js 10 // @@species shouldn't result in a rejection, even if that constructor
  /external/v8/test/mjsunit/es6/
promise-species.js 7 // Test that Promises use @@species appropriately
9 // Another constructor with no species will not be instantiated
21 // If there is a species, it will be instantiated
22 // @@species will be read exactly once, and the constructor is called with a
31 static get [Symbol.species]() {
typedarray-species.js 26 // Subclasses can override @@species to return the another class
31 static get [Symbol.species]() { return MyTypedArray; }
49 static get [Symbol.species]() { return Array; }
56 // Defaults when constructor or @@species is missing or non-constructor
60 static get [Symbol.species]() { return undefined; }
70 // Exceptions propagated when getting constructor @@species throws
77 static get [Symbol.species]() { throw new SpeciesError; }
array-species-delete.js 20 Object.prototype[Symbol.species] = MyArray;
21 delete Array[Symbol.species];
array-species-neg-zero.js 17 x.constructor[Symbol.species] = function(param) {
array-species.js 5 // Test the ES2015 @@species feature
20 // Subclasses can override @@species to return the another class
23 static get [Symbol.species]() { return MyArray; }
35 static get [Symbol.species]() { return MyObject; }
73 // Defaults when constructor or @@species is missing or non-constructor
76 static get [Symbol.species]() { return undefined; }
87 // Exceptions propagated when getting constructor @@species throws
92 static get [Symbol.species]() { throw new SpeciesError; }
123 static get [Symbol.species]() {
164 // @@species constructor can be a Proxy, and the realm access doesn'
    [all...]
array-concat.js 719 // Note: concat does not currently support species so there is no difference
  /external/v8/src/js/
runtime.js 71 var species = constructor[speciesSymbol];
72 if (IS_NULL_OR_UNDEFINED(species)) {
75 if (%IsConstructor(species)) {
76 return species;
symbol.js 89 "species", speciesSymbol,
typedarray.js 696 // The code below is the 'then' branch; the 'else' branch species
regexp.js 391 // doesn't properly call the underlying exec, @@species methods
    [all...]
  /external/v8/src/
heap-symbols.h 204 V(species_symbol, Symbol.species) \
builtins.cc 583 // If anything with @@species has been messed with, call out to JS.
1467 Handle<Object> species; local
    [all...]

Completed in 1036 milliseconds