Don't need "Did you mean literal(...)?" anymore.
[repair.git] / Repair / RepairCompiler / MCC / Symbol.java
1 package MCC;
2
3 /**
4  * Our Symbol class that adds line number functionality.
5  */
6 public class Symbol extends java_cup.runtime.Symbol {
7     int line;
8
9     /**
10      * The simple constructor - just calls super and sets the line number
11      */
12     public Symbol(int type, int left, int right, Object value, int line) {
13         super(type, left, right, value);
14         this.line = line;
15     }
16 }