ladybird/Libraries/LibWeb/DOMURL
Shannon Booth 637fd51595 LibWeb: Unify WebIDL C++ type generation
Represent WebIDL C++ types with a single CppType model that tracks
nullability, optional presence, and contained storage.

GC-like values now use GC::Ref/GC::Ptr directly, while containers choose
"plain", "Root", or "Conservative" container types depending on what
they contain. For example, sequence<Element> becomes a RootVector of
GC::Ref values, while sequence<SomeDictionary> becomes a
ConservativeVector only when the dictionary contains GC-like values.
This moves the generated bindings away from wrapping GC values in
GC::Root by default.

This has broad fallout as the types passed to interfaces for GC
objects changes almost fully across the board.
2026-05-23 18:26:12 +02:00
..
DOMURL.cpp LibWeb: Unify WebIDL C++ type generation 2026-05-23 18:26:12 +02:00
DOMURL.h LibWeb: Correct WEB_PLATFORM_OBJECT macro argument for DOMURL 2026-02-14 20:22:40 +01:00
DOMURL.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
Origin.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
Origin.h LibWeb/HTML: Implement the Origin interface 2025-12-30 12:40:27 +01:00
Origin.idl LibWeb/HTML: Implement the Origin interface 2025-12-30 12:40:27 +01:00
URLSearchParams.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
URLSearchParams.h LibGC+Everywhere: Factor out a LibGC from LibJS 2024-11-15 14:49:20 +01:00
URLSearchParams.idl
URLSearchParamsIterator.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
URLSearchParamsIterator.h LibWeb: Give IDL exposed PlatformObjects an InterfaceName 2026-02-14 20:22:40 +01:00