notExpr method

MathExpr notExpr()

Implementation

MathExpr notExpr() {
  final token = consume(TokenType.kNot, 'Expected "not" keyword.');
  return NotExpr(token, math());
}