CommentParser is unnameable from outside this crate, meaning a user cannot declare a parser function with fn, only inline with a closure. I've fixed this by exporting parser::*, and enabled the unreachable_pub and unnameable_types to catch this and other unreachable types.
CommentParser
is unnameable from outside this crate, meaning a user cannot declare a parser function withfn
, only inline with a closure. I've fixed this by exportingparser::*
, and enabled theunreachable_pub
andunnameable_types
to catch this and other unreachable types.