1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:17:44 +00:00

LibJS: Support object rest elements in the bytecode interpreter

This commit is contained in:
Matthew Olsson 2021-06-13 15:30:32 -07:00 committed by Andreas Kling
parent 57b9a228ab
commit 25baefdd1e
4 changed files with 107 additions and 3 deletions

View file

@ -32,6 +32,7 @@
O(IteratorToArray) \
O(NewString) \
O(NewObject) \
O(CopyObjectExcludingProperties) \
O(GetVariable) \
O(SetVariable) \
O(PutById) \
@ -103,5 +104,4 @@ protected:
private:
Type m_type {};
};
}