|
@@ -3762,9 +3762,6 @@ void generate_namespace_implementation(IDL::Interface const& interface, StringBu
|
|
|
|
|
|
)~~~");
|
|
|
|
|
|
- for (auto& path : interface.required_imported_paths)
|
|
|
- generate_include_for(generator, path);
|
|
|
-
|
|
|
emit_includes_for_all_imports(interface, generator, interface.pair_iterator_types.has_value());
|
|
|
|
|
|
generator.append(R"~~~(
|
|
@@ -4028,9 +4025,6 @@ void generate_constructor_implementation(IDL::Interface const& interface, String
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- for (auto& path : interface.required_imported_paths)
|
|
|
- generate_include_for(generator, path);
|
|
|
-
|
|
|
emit_includes_for_all_imports(interface, generator, interface.pair_iterator_types.has_value());
|
|
|
|
|
|
generator.append(R"~~~(
|
|
@@ -4301,9 +4295,6 @@ void generate_prototype_implementation(IDL::Interface const& interface, StringBu
|
|
|
)~~~");
|
|
|
}
|
|
|
|
|
|
- for (auto& path : interface.required_imported_paths)
|
|
|
- generate_include_for(generator, path);
|
|
|
-
|
|
|
emit_includes_for_all_imports(interface, generator, interface.pair_iterator_types.has_value());
|
|
|
|
|
|
generator.append(R"~~~(
|
|
@@ -4594,9 +4585,6 @@ void generate_global_mixin_implementation(IDL::Interface const& interface, Strin
|
|
|
|
|
|
)~~~");
|
|
|
|
|
|
- for (auto& path : interface.required_imported_paths)
|
|
|
- generate_include_for(generator, path);
|
|
|
-
|
|
|
emit_includes_for_all_imports(interface, generator, interface.pair_iterator_types.has_value());
|
|
|
|
|
|
generator.append(R"~~~(
|