From 0153514314eb82ac3751c42d8e4916bcdb2333a4 Mon Sep 17 00:00:00 2001 From: Kenneth Myhra Date: Wed, 13 Jul 2022 21:22:40 +0200 Subject: [PATCH] LibWeb/IDL: Add support for generating IDL BufferSource type --- .../CodeGenerators/LibWeb/WrapperGenerator/IDLGenerators.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Meta/Lagom/Tools/CodeGenerators/LibWeb/WrapperGenerator/IDLGenerators.cpp b/Meta/Lagom/Tools/CodeGenerators/LibWeb/WrapperGenerator/IDLGenerators.cpp index 92a4fa0d31..00de95247a 100644 --- a/Meta/Lagom/Tools/CodeGenerators/LibWeb/WrapperGenerator/IDLGenerators.cpp +++ b/Meta/Lagom/Tools/CodeGenerators/LibWeb/WrapperGenerator/IDLGenerators.cpp @@ -108,6 +108,9 @@ CppType idl_type_name_to_cpp_type(Type const& type, Interface const& interface) if (type.name == "any") return { .name = "JS::Value", .sequence_storage_type = SequenceStorageType::MarkedVector }; + if (type.name == "BufferSource") + return { .name = "JS::Handle", .sequence_storage_type = SequenceStorageType::MarkedVector }; + if (type.name == "sequence") { auto& parameterized_type = verify_cast(type); auto& sequence_type = parameterized_type.parameters.first();