1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 15:48:12 +00:00

LibJS: Implement the GetMethod abstract operation

https://tc39.es/ecma262/#sec-getmethod

We have bunch of duplicated on-demand versions of this, let's do it
properly.
This commit is contained in:
Linus Groh 2021-03-02 18:04:13 +01:00 committed by Andreas Kling
parent f0912027ff
commit 1b43a6ef2d
3 changed files with 22 additions and 0 deletions

View file

@ -139,6 +139,7 @@ class MarkedValueList;
class NativeFunction;
class NativeProperty;
class PrimitiveString;
class PropertyName;
class Reference;
class ScopeNode;
class ScopeObject;