LB method

Token? LB(
  1. int k
)

Implementation

Token? LB(int k) {
  if ((p - k) < 0) return null;
  return tokens[p - k];
}