pub fn parse_z80_line_complete(
    in: &mut Vec<LocatedToken>
) -> impl FnMut(Z80Span) -> IResult<Z80Span, (), Z80ParserError> + '_
Expand description

Parse a line (ie a set of components separated by :) until the end of the line or a stop directive XXX: In opposite to the other functions, the result is stored in the parameter (to avoid unecessary memory allocations)