EOF constant

TokenType const EOF

The type of the token that marks the start or end of the input.

Implementation

static const TokenType EOF = const TokenType(
  /* index = */ 0,
  '',
  'EOF',
  NO_PRECEDENCE,
  EOF_TOKEN,
);