summaryrefslogtreecommitdiff
path: root/Meta
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2022-10-20 22:34:55 +0200
committerLinus Groh <mail@linusgroh.de>2022-10-20 22:34:55 +0200
commit3b2e5b08d9d6ba24f9af98a99e5019d384c75a97 (patch)
tree0d9ab7785cd1bf7f345665b7316647db51051771 /Meta
parent4d9c0c7b223a6398f8d06ddfb08b574a86d5b8d6 (diff)
downloadserenity-3b2e5b08d9d6ba24f9af98a99e5019d384c75a97.zip
LibWeb: Remove dbgln FIXME spam from BindingsGenerator
Diffstat (limited to 'Meta')
-rw-r--r--Meta/Lagom/Tools/CodeGenerators/LibWeb/BindingsGenerator/IDLGenerators.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Meta/Lagom/Tools/CodeGenerators/LibWeb/BindingsGenerator/IDLGenerators.cpp b/Meta/Lagom/Tools/CodeGenerators/LibWeb/BindingsGenerator/IDLGenerators.cpp
index f46bbbb01a..9eac983237 100644
--- a/Meta/Lagom/Tools/CodeGenerators/LibWeb/BindingsGenerator/IDLGenerators.cpp
+++ b/Meta/Lagom/Tools/CodeGenerators/LibWeb/BindingsGenerator/IDLGenerators.cpp
@@ -912,7 +912,7 @@ static void generate_to_cpp(SourceGenerator& generator, ParameterType& parameter
// FIXME: 2. If the union type includes a nullable type and V is null or undefined, then return the IDL value null.
if (union_type.includes_nullable_type()) {
- dbgln("FIXME: 2. If the union type includes a nullable type and V is null or undefined, then return the IDL value null.");
+ // Implement me
} else if (dictionary_type) {
// 4. If V is null or undefined, then
// 4.1 If types includes a dictionary type, then return the result of converting V to that dictionary type.