mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-05-11 13:29:43 +00:00
Ignore implements
items explicitly
No need to warn about them because there's not much to handle with them anyway!
This commit is contained in:
parent
73e89fc59b
commit
72fff9c43e
@ -181,12 +181,14 @@ impl<'src> WebidlParse<'src, ()> for weedle::Definition<'src> {
|
|||||||
weedle::Definition::PartialInterfaceMixin(_) => {
|
weedle::Definition::PartialInterfaceMixin(_) => {
|
||||||
// handled in the first pass
|
// handled in the first pass
|
||||||
}
|
}
|
||||||
|
weedle::Definition::Implements(..) => {
|
||||||
|
// nothing to do for this, ignore it
|
||||||
|
}
|
||||||
// TODO
|
// TODO
|
||||||
weedle::Definition::Callback(..)
|
weedle::Definition::Callback(..)
|
||||||
| weedle::Definition::CallbackInterface(..)
|
| weedle::Definition::CallbackInterface(..)
|
||||||
| weedle::Definition::Dictionary(..)
|
| weedle::Definition::Dictionary(..)
|
||||||
| weedle::Definition::PartialDictionary(..)
|
| weedle::Definition::PartialDictionary(..)
|
||||||
| weedle::Definition::Implements(..)
|
|
||||||
| weedle::Definition::Namespace(..)
|
| weedle::Definition::Namespace(..)
|
||||||
| weedle::Definition::PartialNamespace(..) => {
|
| weedle::Definition::PartialNamespace(..) => {
|
||||||
warn!("Unsupported WebIDL definition: {:?}", self)
|
warn!("Unsupported WebIDL definition: {:?}", self)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user