LibJS: Add console.trace()

This commit is contained in:
Linus Groh 2020-04-11 12:57:13 +01:00 committed by Andreas Kling
commit 3b21c4aa56
Notes: sideshowbarker 2024-07-19 07:43:18 +09:00
3 changed files with 17 additions and 0 deletions

View file

@ -39,6 +39,7 @@ private:
virtual const char* class_name() const override { return "ConsoleObject"; }
static Value log(Interpreter&);
static Value trace(Interpreter&);
};
}