All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.snapscript.parse.TokenLexer Maven / Gradle / Ivy

package org.snapscript.parse;

public interface TokenLexer {      
   Token type();   
   Token text();
   Token template();
   Token identifier();
   Token qualifier();
   Token literal(String text);
   Token hexidecimal();
   Token binary();
   Token decimal();
   Token space();
   Line line(int mark);
   int reset(int mark);
   int count();
   int peek();
   int mark();  
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy