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

com.squarespace.template.expr.Token Maven / Gradle / Ivy

There is a newer version: 2.10.0
Show newest version
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