/**This code is provided for solely for use of students in the course COP5556 Programming Language Principles at the
* University of Florida during the Fall Semester 2022 as part of the course project.No other use is authorized.
package edu.ufl.cise.plpfa22;
Copyright By Assignmentchef assignmentchef
public interface ILexer {
* Return an IToken and advance the internal position so that subsequent calls will return subsequent ITokens.
* @throws LexicalException
IToken next() throws LexicalException;
* Return an IToken without advancing the internal position.A subsequent call to next or peek will return the same IToken.
* @throws LexicalException
IToken peek() throws LexicalException;
CS: assignmentchef QQ: 1823890830 Email: [email protected]
Reviews
There are no reviews yet.