Remove extra export of LexError.

This commit is contained in:
Stephen Chung 2020-11-04 20:20:55 +08:00
parent 99669b5909
commit 3f6db1d9d4

View File

@ -161,11 +161,6 @@ pub mod serde {
pub use optimize::OptimizationLevel; pub use optimize::OptimizationLevel;
// Expose internal data structures. // Expose internal data structures.
#[cfg(feature = "internals")]
#[deprecated(note = "this type is volatile and may change")]
pub use parse_error::LexError;
#[cfg(feature = "internals")] #[cfg(feature = "internals")]
#[deprecated(note = "this type is volatile and may change")] #[deprecated(note = "this type is volatile and may change")]
pub use token::{get_next_token, parse_string_literal, InputStream, Token, TokenizeState}; pub use token::{get_next_token, parse_string_literal, InputStream, Token, TokenizeState};