use crate::*;
pub(crate) fn super_with_optional_argument(i: Input) -> TokenResult {
stub(i)
}
pub(crate) fn super_with_argument(i: Input) -> TokenResult {
stub(i)
}
pub(crate) fn super_with_argument_and_do_block(i: Input) -> TokenResult {
stub(i)
}
fn stub(i: Input) -> TokenResult {
Err(nom::Err::Error((i, crate::ErrorKind::Char)))
}