Merge branch 'remove-wildcard-pattern' into 'master'

Be explicit about quick-xml Events we are handling

See merge request lumi/minidom-rs!24
This commit is contained in:
lumi 2017-12-31 16:35:56 +00:00
commit 309d84f2d0

View file

@ -295,7 +295,13 @@ impl Element {
Event::Eof => { Event::Eof => {
bail!(ErrorKind::EndOfDocument); bail!(ErrorKind::EndOfDocument);
}, },
_ => (), // TODO: may need more errors Event::Text { .. } |
Event::End { .. } |
Event::Comment { .. } |
Event::CData { .. } |
Event::Decl { .. } |
Event::PI { .. } |
Event::DocType { .. } => (), // TODO: may need more errors
} }
}; };
@ -334,7 +340,10 @@ impl Element {
Event::Eof => { Event::Eof => {
break; break;
}, },
_ => (), // TODO: may need to implement more Event::Comment { .. } |
Event::Decl { .. } |
Event::PI { .. } |
Event::DocType { .. } => (),
} }
} }
Ok(stack.pop().unwrap()) Ok(stack.pop().unwrap())