mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-30 08:18:49 +00:00
LibWeb: Log classic script start, finish, and duration
When waiting for a page to load, it's nice to see which scripts run, and how long they take to finish.
This commit is contained in:
parent
3f067f8457
commit
f6ad7dfc0b
Notes:
sideshowbarker
2024-07-18 04:04:36 +09:00
Author: https://github.com/awesomekling
Commit: f6ad7dfc0b
1 changed files with 4 additions and 0 deletions
|
@ -4,6 +4,7 @@
|
|||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#include <LibCore/ElapsedTimer.h>
|
||||
#include <LibJS/Interpreter.h>
|
||||
#include <LibWeb/HTML/Scripting/ClassicScript.h>
|
||||
|
||||
|
@ -51,13 +52,16 @@ NonnullRefPtr<ClassicScript> ClassicScript::create(String filename, StringView s
|
|||
// https://html.spec.whatwg.org/multipage/webappapis.html#run-a-classic-script
|
||||
JS::Value ClassicScript::run(RethrowErrors rethrow_errors)
|
||||
{
|
||||
dbgln("ClassicScript: Running script {}", filename());
|
||||
(void)rethrow_errors;
|
||||
|
||||
auto timer = Core::ElapsedTimer::start_new();
|
||||
auto interpreter = JS::Interpreter::create_with_existing_realm(m_script_record->realm());
|
||||
interpreter->run(interpreter->global_object(), m_script_record->parse_node());
|
||||
auto& vm = interpreter->vm();
|
||||
if (vm.exception())
|
||||
vm.clear_exception();
|
||||
dbgln("ClassicScript: Finished running script {}, Duration: {}ms", filename(), timer.elapsed());
|
||||
return vm.last_value();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue