summaryrefslogtreecommitdiffstats
path: root/third_party/rust/nom/src/methods.rs
blob: 520f1e8bfdba4232bb4aba33e461eb38ff1922fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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"););
);