use crate::parser::*; //use nom::branch::*; //use nom::combinator::*; use nom::error::*; use nom::{Err, IResult}; // ----------------------------------------------------------------------------- #[derive(Debug)] pub struct UdpDeclaration<'a> { pub nodes: (Identifier<'a>,), } // ----------------------------------------------------------------------------- pub fn udp_declaration(s: Span) -> IResult { Err(Err::Error(make_error(s, ErrorKind::Fix))) }