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

LibJS: Add console.trace()

This commit is contained in:
Linus Groh 2020-04-11 12:57:13 +01:00 committed by Andreas Kling
parent eece424694
commit 3b21c4aa56
3 changed files with 17 additions and 0 deletions

View file

@ -112,6 +112,7 @@ public:
}
void pop_call_frame() { m_call_stack.take_last(); }
const CallFrame& call_frame() { return m_call_stack.last(); }
const Vector<CallFrame> call_stack() { return m_call_stack; }
size_t argument_count() const
{