blob: 90d065dcb8c0c33a17b13cece021038607ada93e [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 TAlt extends Token
{
public TAlt()
{
super.setText("alt");
}
public TAlt(int line, int pos)
{
super.setText("alt");
setLine(line);
setPos(pos);
}
@Override
public Object clone()
{
return new TAlt(getLine(), getPos());
}
public void apply(Switch sw)
{
((Analysis) sw).caseTAlt(this);
}
@Override
public void setText(@SuppressWarnings("unused") String text)
{
throw new RuntimeException("Cannot change TAlt text.");
}
}