some more work on the first set. I think it might actually be right now

This commit is contained in:
Nathan Braswell
2015-07-16 23:32:27 -04:00
parent 51adf491fa
commit f431b0305a
3 changed files with 11 additions and 8 deletions

View File

@@ -3,8 +3,9 @@ a = b ;
b = "c":named_c ;
b = c "d":dname ;
c = "a" | d ;
d = e post_null post_non_null ;
d = e post_null post_non_null inherit_null ;
inherit_null = e | post_non_null ;
e = f | ;
f = ;
post_null = "hi"
post_non_null = "bye"
post_null = "hi" ;
post_non_null = "bye" ;