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

LibJS: Move Interpreter::get_trace() to ConsoleClient

Having it globally on the interpreter is confusing as the last call frame
is skipped, which is specific to console.trace().
This commit is contained in:
Linus Groh 2020-06-02 13:54:26 +01:00 committed by Andreas Kling
parent 9e3127785e
commit a48080f62d
6 changed files with 14 additions and 12 deletions

View file

@ -181,7 +181,6 @@ public:
const Console& console() const { return m_console; }
String join_arguments() const;
Vector<String> get_trace() const;
private:
Interpreter();