multiLineComment method

Parser<void> multiLineComment()

Implementation

Parser<void> multiLineComment() =>
    string('/*') & (ref0(multiLineComment) | string('*/').neg()).star() & string('*/');