comment method
Parser
comment()
Implementation
Parser comment() => seq3(
string('(*'),
[ref0(comment), any()].toChoiceParser().starLazy(string('*)')),
string('*)'),
);
Parser comment() => seq3(
string('(*'),
[ref0(comment), any()].toChoiceParser().starLazy(string('*)')),
string('*)'),
);