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

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

There is a newer version: 2.10.0
Show newest version
package com.squarespace.template.expr;

/**
 * Marker token indicating the end of the arguments list for a function call.
 */
public class ArgsToken extends Token {

  public ArgsToken() {
    super(ExprTokenType.ARGS);
  }

  @Override
  public boolean equals(Object obj) {
    return obj instanceof ArgsToken;
  }

  @Override
  public String toString() {
    return "ArgsToken";
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy