Function parse_fn_args_body

Source
pub fn parse_fn_args_body<'a, P: Parser<'a>, F>(
    p: &mut P,
    decorators: Vec<Decorator>,
    start: BytePos,
    parse_args: F,
    is_async: bool,
    is_generator: bool,
) -> PResult<Box<Function>>
where F: FnOnce(&mut P) -> PResult<Vec<Param>>,
Expand description

parse_args closure should not eat ‘(’ or ‘)’.