de.prob.unicode.node.TDprod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unicode Show documentation
Show all versions of unicode Show documentation
Part of the ProB Parser library
/* This file was generated by SableCC (http://www.sablecc.org/). */
package de.prob.unicode.node;
import de.prob.unicode.analysis.Analysis;
public final class TDprod extends Token
{
public TDprod(String text)
{
super(text);
}
public TDprod(String text, int line, int pos)
{
super(text, line, pos);
}
@Override
public TDprod clone()
{
TDprod cloned = new TDprod(this.getText(), this.getLine(), this.getPos());
cloned.initSourcePositionsFrom(this);
return cloned;
}
@Override
public void apply(Switch sw)
{
((Analysis) sw).caseTDprod(this);
}
}