1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Copyright (c) 2020 Tianyi Shi
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
// use nom::error::ErrorKind;
// use nom::error::ParseError;
// use nom::Err::Error;
// use nom::IResult;
// #[derive(Debug, PartialEq)]
// pub enum PdbParseError<I> {
// Ascii,
// UnknownField,
// Other,
// Nom(I, ErrorKind),
// }
// impl<I> ParseError<I> for PdbParseError<I> {
// fn from_error_kind(input: I, kind: ErrorKind) -> Self {
// PdbParseError::Nom(input, kind)
// }
// fn append(_: I, _: ErrorKind, other: Self) -> Self {
// other
// }
// }
// fn parse(input: &[u8]) -> IResult<&[u8], &[u8], PdbParseError<&[u8]>> {
// Err(Error(PdbParseError::Other))
// }
// #[cfg(test)]
// mod tests {
// use super::parse;
// use super::PdbParseError;
// use nom::Err::Error;
// #[test]
// fn it_works() {
// let err = parse("").unwrap_err();
// match err {
// Error(e) => assert_eq!(e, PdbParseError::Other),
// _ => panic!("Unexpected error: {:?}", err),
// }
// }
// }