diff --git a/crates/webidl/src/lib.rs b/crates/webidl/src/lib.rs index 3992f432..d1acf28e 100644 --- a/crates/webidl/src/lib.rs +++ b/crates/webidl/src/lib.rs @@ -353,14 +353,6 @@ impl<'a> WebidlParse<&'a webidl::ast::NonPartialInterface> for webidl::ast::Exte { add_constructor(arguments, &interface.name) } - webidl::ast::ExtendedAttribute::IdentifierList( - webidl::ast::IdentifierListExtendedAttribute { lhs, .. }, - ) - if lhs == "Exposed" => - { - // ignore these attributes for now, we just splat everything in - // the crate whether it's workable in a web worker or not. - } webidl::ast::ExtendedAttribute::NoArguments(webidl::ast::Other::Identifier(name)) if name == "Constructor" => {