summaryrefslogtreecommitdiff
path: root/src/parser.mly
diff options
context:
space:
mode:
authorAlasdair Armstrong2018-12-14 15:17:42 +0000
committerAlasdair Armstrong2018-12-14 15:17:42 +0000
commit2dfcbdeedb0ac40d4865aaf5c2202dfba95f4a38 (patch)
treee267b9d9166e3548f71508d9d68b8ea1f35a304d /src/parser.mly
parentbfb20a209d1b72c832b4376d6d3c51d39970ef2f (diff)
Add a few more tests for Jenkins
Some of the output from the tests scripts is odd on Jenkins, try to fix this by flushing stdout more regularly in the test scripts
Diffstat (limited to 'src/parser.mly')
-rw-r--r--src/parser.mly6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/parser.mly b/src/parser.mly
index 6344db97..66902953 100644
--- a/src/parser.mly
+++ b/src/parser.mly
@@ -319,12 +319,6 @@ kid:
| TyVar
{ mk_kid $1 $startpos $endpos }
-kid_list:
- | kid
- { [$1] }
- | kid kid_list
- { $1 :: $2 }
-
num_list:
| Num
{ [$1] }