mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 17:28:30 +00:00
LibGC+Everywhere: Factor out a LibGC from LibJS
Resulting in a massive rename across almost everywhere! Alongside the namespace change, we now have the following names: * JS::NonnullGCPtr -> GC::Ref * JS::GCPtr -> GC::Ptr * JS::HeapFunction -> GC::Function * JS::CellImpl -> GC::Cell * JS::Handle -> GC::Root
This commit is contained in:
committed by
Andreas Kling
parent
ce23efc5f6
commit
f87041bf3a
@@ -214,7 +214,7 @@ inline ByteBuffer load_entire_file(StringView path)
|
||||
return buffer_or_error.release_value();
|
||||
}
|
||||
|
||||
inline AK::Result<JS::NonnullGCPtr<JS::Script>, ParserError> parse_script(StringView path, JS::Realm& realm)
|
||||
inline AK::Result<GC::Ref<JS::Script>, ParserError> parse_script(StringView path, JS::Realm& realm)
|
||||
{
|
||||
auto contents = load_entire_file(path);
|
||||
auto script_or_errors = JS::Script::parse(contents, realm, path);
|
||||
@@ -227,7 +227,7 @@ inline AK::Result<JS::NonnullGCPtr<JS::Script>, ParserError> parse_script(String
|
||||
return script_or_errors.release_value();
|
||||
}
|
||||
|
||||
inline AK::Result<JS::NonnullGCPtr<JS::SourceTextModule>, ParserError> parse_module(StringView path, JS::Realm& realm)
|
||||
inline AK::Result<GC::Ref<JS::SourceTextModule>, ParserError> parse_module(StringView path, JS::Realm& realm)
|
||||
{
|
||||
auto contents = load_entire_file(path);
|
||||
auto script_or_errors = JS::SourceTextModule::parse(contents, realm, path);
|
||||
@@ -278,8 +278,8 @@ inline JSFileResult TestRunner::run_file_test(ByteString const& test_path)
|
||||
|
||||
double start_time = get_time_in_ms();
|
||||
|
||||
JS::GCPtr<JS::Realm> realm;
|
||||
JS::GCPtr<TestRunnerGlobalObject> global_object;
|
||||
GC::Ptr<JS::Realm> realm;
|
||||
GC::Ptr<TestRunnerGlobalObject> global_object;
|
||||
auto root_execution_context = MUST(JS::Realm::initialize_host_defined_realm(
|
||||
*g_vm,
|
||||
[&](JS::Realm& realm_) -> JS::GlobalObject* {
|
||||
|
||||
Reference in New Issue
Block a user