com.squarespace.template.expr.ArgsToken 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;
/**
* 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