AK+Userland: Remove NOESCAPE

See the next commit for an explanation
This commit is contained in:
Matthew Olsson 2024-05-17 17:09:20 -07:00 committed by Andrew Kaster
commit a5f4c9a632
Notes: sideshowbarker 2024-07-17 18:13:59 +09:00
16 changed files with 24 additions and 26 deletions

View file

@ -84,7 +84,7 @@ ErrorOr<void> initialize_main_thread_vm();
JS::VM& main_thread_vm();
void queue_mutation_observer_microtask(DOM::Document const&);
NonnullOwnPtr<JS::ExecutionContext> create_a_new_javascript_realm(JS::VM&, NOESCAPE Function<JS::Object*(JS::Realm&)> create_global_object, NOESCAPE Function<JS::Object*(JS::Realm&)> create_global_this_value);
NonnullOwnPtr<JS::ExecutionContext> create_a_new_javascript_realm(JS::VM&, Function<JS::Object*(JS::Realm&)> create_global_object, Function<JS::Object*(JS::Realm&)> create_global_this_value);
void invoke_custom_element_reactions(Vector<JS::Handle<DOM::Element>>& element_queue);
}