diff options
Diffstat (limited to 'third_party/rust/nom/src/methods.rs')
-rw-r--r-- | third_party/rust/nom/src/methods.rs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/third_party/rust/nom/src/methods.rs b/third_party/rust/nom/src/methods.rs new file mode 100644 index 0000000000..520f1e8bfd --- /dev/null +++ b/third_party/rust/nom/src/methods.rs @@ -0,0 +1,20 @@ +//! method combinators + +/// do not use: method combinators moved to the nom-methods crate +#[macro_export] +macro_rules! method ( + ($($args:tt)*) => (compile_error!("method combinators moved to the nom-methods crate");); +); + +/// do not use: method combinators moved to the nom-methods crate +#[macro_export] +macro_rules! call_m ( + ($($args:tt)*) => (compile_error!("method combinators moved to the nom-methods crate");); +); + +/// do not use: method combinators moved to the nom-methods crate +#[macro_export] +macro_rules! apply_m ( + ($($args:tt)*) => (compile_error!("method combinators moved to the nom-methods crate");); +); + |