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
Notes: sideshowbarker 2024-07-18 12:02:18 +09:00
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 {};
};
}