multiLineComment method

Parser multiLineComment()

Implementation

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