LibJS: Implement console.count()

This commit is contained in:
Emanuele Torre 2020-05-01 07:14:57 +02:00 committed by Andreas Kling
commit 8c60ba1e42
Notes: sideshowbarker 2024-07-19 07:08:44 +09:00
3 changed files with 29 additions and 0 deletions

View file

@ -44,6 +44,7 @@ private:
static Value warn(Interpreter&);
static Value error(Interpreter&);
static Value trace(Interpreter&);
static Value count(Interpreter&);
};
}