ftl.InvalidToken Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of freshmarker Show documentation
Show all versions of freshmarker Show documentation
A simple, small but powerful template engine based loosely on the FreeMarker syntax. FreshMarker is
implemented in Java 21 and supports the `java.time` API and Records.
/* Generated by: CongoCC Parser Generator. InvalidToken.java */
package ftl;
/**
* Token subclass to represent lexically invalid input
*/
public class InvalidToken extends Token {
public InvalidToken(FreshMarkerLexer tokenSource, int beginOffset, int endOffset) {
super(TokenType.INVALID, tokenSource, beginOffset, endOffset);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy