tamer: obj::xmlo::XmloEvent::SymDeps: Remove

This is not longer needed after the previous commit.
main
Mike Gerwitz 2022-03-10 13:43:07 -05:00
parent dcfae8a624
commit d428755a2e
2 changed files with 0 additions and 10 deletions

View File

@ -147,12 +147,6 @@ pub enum XmloEvent {
/// [`SymAttrs`].
SymDecl(SymbolId, SymAttrs),
/// Dependencies of a given symbol.
///
/// Note that, for simplicity, an owned vector is returned rather than a
/// slice into an internal buffer.
SymDeps(SymbolId, Vec<SymbolId>),
/// Begin adjacency list for a given symbol and interpret subsequent
/// symbols as edges (dependencies).
SymDepStart(SymbolId),

View File

@ -480,10 +480,6 @@ where
/// </preproc:sym-dep>
/// ```
///
/// This function will read any number of `preproc:sym-ref` nodes and
/// produce a single [`XmloEvent::SymDeps`] containing a [`SymbolId`]
/// for `preproc:sym-dep/@name` and for each `preproc:sym-ref/@name`.
///
/// Errors
/// ======
/// - [`XmloError::UnassociatedSymDep`] if missing `preproc:sym-dep/@name`.