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