Fix comments in rules.

Change-Id: I86c9699a52ee287b8f488dcc4531f624fd8771e0
This commit is contained in:
Felix Raimundo
2016-04-22 17:26:15 +02:00
parent 9ea68bb66b
commit ff275170cb
2 changed files with 0 additions and 2 deletions

View File

@@ -1,4 +1,3 @@
/* */
Addition(Addition(a*),b*)->Addition(a*,b*);
Addition(Integer.a,Integer.b)->$AddIntegers(a,b);
Addition(Integer.a,Integer.b,c*)->Addition($AddIntegers(a,b),c*);

View File

@@ -23,7 +23,6 @@
\; { return(SEMICOLON); }
\. { return(PERIOD); }
"//".* {} /* ignore single line comments */
"/*".*"*/" {} /* ignore multiline comments */
[ \t\n] {} /* ignore line jump and whitespaces */