changes: generated annotated code but it still causes type errors + re-formatting...
[IRC.git] / Robust / src / Lex / EOF.java
index b64d5d637b2eb0682fbbdacc250a178e6c117d21..126e62d5121bfae9734e213cd64e8a2fcc1c46a6 100644 (file)
@@ -4,7 +4,12 @@ import java_cup.runtime.Symbol;
 import Parse.Sym;
 
 class EOF extends Token {
-  EOF() {}
-  Symbol token() { return new Symbol(Sym.EOF); }
-  public String toString() { return "EOF"; }
+  EOF() {
+  }
+  Symbol token() {
+    return new Symbol(Sym.EOF);
+  }
+  public String toString() {
+    return "EOF";
+  }
 }