blob: 80b5448fd7346cc494765629f8a7ae2e25b1c3c9 [file] [log] [blame]
/* This file was generated by SableCC (http://www.sablecc.org/). */
package com.google.clearsilver.jsilver.syntax.node;
import com.google.clearsilver.jsilver.syntax.analysis.*;
@SuppressWarnings("nls")
public final class TStar extends Token
{
public TStar()
{
super.setText("*");
}
public TStar(int line, int pos)
{
super.setText("*");
setLine(line);
setPos(pos);
}
@Override
public Object clone()
{
return new TStar(getLine(), getPos());
}
public void apply(Switch sw)
{
((Analysis) sw).caseTStar(this);
}
@Override
public void setText(@SuppressWarnings("unused") String text)
{
throw new RuntimeException("Cannot change TStar text.");
}
}