Make arg parsing agnostic to use

This commit is contained in:
ConnorSkees 2020-01-25 12:46:51 -05:00
parent 53988b377c
commit fd951dca26

View File

@ -107,7 +107,7 @@ pub(crate) fn eat_func_args<I: Iterator<Item = Token>>(toks: &mut Peekable<I>) -
}) = toks.next()
{
} else {
todo!("expected `{{` after mixin args")
todo!("expected `{{` after args")
}
FuncArgs(args)
}