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