singleLineComment method

Parser<void> singleLineComment()

Implementation

Parser<void> singleLineComment() =>
    string('//') & ref0(newline).neg().star() & ref0(newline).optional();