EQ constant

TokenType const EQ

Implementation

static const TokenType EQ = const TokenType(
  /* index = */ 31,
  '=',
  'EQ',
  ASSIGNMENT_PRECEDENCE,
  EQ_TOKEN,
  isOperator: true,
);