1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:27:34 +00:00

LibJS: Add the Symbol.species getter to the appropriate built-ins

This commit is contained in:
Idan Horowitz 2021-06-07 19:31:32 +03:00 committed by Linus Groh
parent 39c3aefe5d
commit aefb7995f1
10 changed files with 45 additions and 0 deletions

View file

@ -30,6 +30,8 @@ private:
JS_DECLARE_NATIVE_FUNCTION(race);
JS_DECLARE_NATIVE_FUNCTION(reject);
JS_DECLARE_NATIVE_FUNCTION(resolve);
JS_DECLARE_NATIVE_GETTER(symbol_species_getter);
};
}