annotate testbad.fc @ 132:1f238280047f

Some work on expression parsing in new parser
author Mike Pavone <pavone@retrodev.com>
date Fri, 05 Nov 2010 01:23:25 -0400
parents 6a1a7d5cc2d9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
73
6a1a7d5cc2d9 Add some error checking, cleanup output and add a bad test file
Mike Pavone <pavone@retrodev.com>
parents:
diff changeset
1 B = R(A, L(B, R(C,D)))
6a1a7d5cc2d9 Add some error checking, cleanup output and add a bad test file
Mike Pavone <pavone@retrodev.com>
parents:
diff changeset
2 C = R(B, R(C, D))
6a1a7d5cc2d9 Add some error checking, cleanup output and add a bad test file
Mike Pavone <pavone@retrodev.com>
parents:
diff changeset
3 X = L(X, L(A, L(B, R(C,D))))
6a1a7d5cc2d9 Add some error checking, cleanup output and add a bad test file
Mike Pavone <pavone@retrodev.com>
parents:
diff changeset
4 A = L(X, L(A, L(B, R(C,D))))
6a1a7d5cc2d9 Add some error checking, cleanup output and add a bad test file
Mike Pavone <pavone@retrodev.com>
parents:
diff changeset
5 E = L(E, L(C, D))
6a1a7d5cc2d9 Add some error checking, cleanup output and add a bad test file
Mike Pavone <pavone@retrodev.com>
parents:
diff changeset
6 D = R(E, L(C, D))
6a1a7d5cc2d9 Add some error checking, cleanup output and add a bad test file
Mike Pavone <pavone@retrodev.com>
parents:
diff changeset
7