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

LibJS: Implement console.count()

This commit is contained in:
Emanuele Torre 2020-05-01 07:14:57 +02:00 committed by Andreas Kling
parent 28ef654d13
commit 8c60ba1e42
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&);
};
}