com.squarespace.template.expr.Token Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of template-core Show documentation
Show all versions of template-core Show documentation
Squarespace template compiler
package com.squarespace.template.expr;
/**
* Base class for all tokens in our expression grammar.
*/
public abstract class Token {
public final ExprTokenType type;
protected Token(ExprTokenType type) {
this.type = type;
}
@Override
public String toString() {
return type.name();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy