/* This file was generated by SableCC (http://www.sablecc.org/). */ package minijava.node; import minijava.analysis.*; public final class TComment extends Token { public TComment() { super.setText("/*"); } public TComment(int line, int pos) { super.setText("/*"); setLine(line); setPos(pos); } public Object clone() { return new TComment(getLine(), getPos()); } public void apply(Switch sw) { ((Analysis) sw).caseTComment(this); } public void setText(String text) { super.setText(text); //throw new RuntimeException("Cannot change TComment text."); } }