1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:07:36 +00:00

LibWeb: Add constructor options to TextDecoder

This commit is contained in:
Bastiaan van der Plaat 2023-10-06 07:02:56 +02:00 committed by Andreas Kling
parent 9ed8c0b183
commit f1ead552ce
5 changed files with 47 additions and 15 deletions

View file

@ -3227,6 +3227,7 @@ void generate_namespace_implementation(IDL::Interface const& interface, StringBu
using namespace Web::CSS;
using namespace Web::DOM;
using namespace Web::DOMParsing;
using namespace Web::Encoding;
using namespace Web::Fetch;
using namespace Web::FileAPI;
using namespace Web::Geometry;
@ -3444,6 +3445,7 @@ void generate_constructor_implementation(IDL::Interface const& interface, String
using namespace Web::CSS;
using namespace Web::DOM;
using namespace Web::DOMParsing;
using namespace Web::Encoding;
using namespace Web::Fetch;
using namespace Web::FileAPI;
using namespace Web::Geometry;
@ -3829,6 +3831,7 @@ using namespace Web::Crypto;
using namespace Web::CSS;
using namespace Web::DOM;
using namespace Web::DOMParsing;
using namespace Web::Encoding;
using namespace Web::Fetch;
using namespace Web::FileAPI;
using namespace Web::Geometry;
@ -3976,6 +3979,7 @@ void generate_iterator_prototype_implementation(IDL::Interface const& interface,
using namespace Web::CSS;
using namespace Web::DOM;
using namespace Web::DOMParsing;
using namespace Web::Encoding;
using namespace Web::Fetch;
using namespace Web::FileAPI;
using namespace Web::Geometry;
@ -4108,6 +4112,7 @@ using namespace Web::Crypto;
using namespace Web::CSS;
using namespace Web::DOM;
using namespace Web::DOMParsing;
using namespace Web::Encoding;
using namespace Web::Fetch;
using namespace Web::FileAPI;
using namespace Web::Geometry;