From eb0657c23e8aa90a1fa09128ed11f510319d1bd0 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Mon, 26 Sep 2022 08:43:24 -0400 Subject: [PATCH] LibWeb: Add WebIDL to the IDL generator's list of web namespaces Without this, the generated DOMExceptionConstructor does not refer to the WebIDL::DOMException with its fully qualified name. This caused an ambiguity error on my machine. --- .../Lagom/Tools/CodeGenerators/LibWeb/BindingsGenerator/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Meta/Lagom/Tools/CodeGenerators/LibWeb/BindingsGenerator/main.cpp b/Meta/Lagom/Tools/CodeGenerators/LibWeb/BindingsGenerator/main.cpp index 72546a958fb..e0417632b43 100644 --- a/Meta/Lagom/Tools/CodeGenerators/LibWeb/BindingsGenerator/main.cpp +++ b/Meta/Lagom/Tools/CodeGenerators/LibWeb/BindingsGenerator/main.cpp @@ -93,6 +93,7 @@ int main(int argc, char** argv) "UIEvents"sv, "URL"sv, "WebGL"sv, + "WebIDL"sv, "WebSockets"sv, "XHR"sv, };