2019-07-09 10:44:14 +09:00

19 lines
491 B
Rust

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