literal function
Implementation
Parser literal() {
return (ref0(nilLiteral) |
ref0(booleanLiteral) |
ref0(numericLiteral) |
ref0(emptyLiteral) |
ref0(stringLiteral))
.labeled('literal');
}
Parser literal() {
return (ref0(nilLiteral) |
ref0(booleanLiteral) |
ref0(numericLiteral) |
ref0(emptyLiteral) |
ref0(stringLiteral))
.labeled('literal');
}