diff options
author | Emanuele Torre <torreemanuele6@gmail.com> | 2020-05-01 17:34:43 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-05-02 11:41:35 +0200 |
commit | be1a5bf3f788d54f00a9439fc15adaaf883e7f0c (patch) | |
tree | 68960f3dc3ccc47168d45bf8d31b9fcd385e8fda /Demos | |
parent | e9c7d4524af15dc1df1f871b78b92063b5b43f1d (diff) | |
download | serenity-be1a5bf3f788d54f00a9439fc15adaaf883e7f0c.zip |
LibJS: Add ConsoleMessage concept
A ConsoleMessage is a struct cointaining:
* AK::String text; represents the text of the message sent
to the console.
* ConsoleMessageKind kind; represents the kind of JS `console` function
from which the message was sent.
Now, Javascript `console` functions only send a ConsoleMessage to the
Interpreter's Console instead of printing text directly to stdout.
The Console then stores the recived ConsoleMessage in
Console::m_messages; the Console does not print to stdout by default.
You can set Console::on_new_message to a void(ConsoleMessage&); this
function will get call everytime a new message is added to the Console's
messages and can be used, for example, to print ConsoleMessages to
stdout or to color the output based on the kind of ConsoleMessage.
In this patch, I also:
* Re-implement all the previously implemented functions in the
JavaScript ConsoleObject, as wrappers around Console functions
that add new message to the Console.
* Implement console.clear() like so:
- m_messages get cleared;
- a new_message with kind set ConsoleMessageKind::Clear gets added
to m_messages, its text is an empty AK::String;
* Give credit to linusg in Console.cpp since I used his
console.trace() algorithm in Console::trace().
I think that having this abstration will help us in the implementation
of a browser console or a JS debugger. We could also add more MetaData
to ConsoleMessage, e.g. Object IDs of the arguments passed to console
functions in order to make hyperlinks, Timestamps, ecc.; which could be
interesting to see.
This will also help in implementing a `/bin/js` option to make, for
example, return a ConsoleMessageWrapper to console functions instead of
undefined. This will be useful to make tests for functions like
console.count() and console.countClear(). :^)
Diffstat (limited to 'Demos')
0 files changed, 0 insertions, 0 deletions