boolLiteral method
Implementation
Parser<Expression> boolLiteral() =>
(string('true').or(string('false')))
.mapWithPosition((v, start, end) =>
Literal(v == 'true', v)..start = start..end = end);
Parser<Expression> boolLiteral() =>
(string('true').or(string('false')))
.mapWithPosition((v, start, end) =>
Literal(v == 'true', v)..start = start..end = end);