Home | History | Annotate | Download | only in node
      1 /* This file was generated by SableCC (http://www.sablecc.org/). */
      2 
      3 package com.google.clearsilver.jsilver.syntax.node;
      4 
      5 import com.google.clearsilver.jsilver.syntax.analysis.*;
      6 
      7 @SuppressWarnings("nls")
      8 public final class TSlash extends Token
      9 {
     10     public TSlash()
     11     {
     12         super.setText("/");
     13     }
     14 
     15     public TSlash(int line, int pos)
     16     {
     17         super.setText("/");
     18         setLine(line);
     19         setPos(pos);
     20     }
     21 
     22     @Override
     23     public Object clone()
     24     {
     25       return new TSlash(getLine(), getPos());
     26     }
     27 
     28     public void apply(Switch sw)
     29     {
     30         ((Analysis) sw).caseTSlash(this);
     31     }
     32 
     33     @Override
     34     public void setText(@SuppressWarnings("unused") String text)
     35     {
     36         throw new RuntimeException("Cannot change TSlash text.");
     37     }
     38 }
     39