Added untested parser code, meaning most of chapter 6 has been implemented (but most likely, very poorly).

This commit is contained in:
2022-02-28 20:13:59 +00:00
parent b72645aed0
commit 41a04094e2
6 changed files with 217 additions and 8 deletions
+6
View File
@@ -0,0 +1,6 @@
#include "expr.h"
void VisitBinary(struct binary);
void VisitGrouping(struct grouping);
void VisitLiteral(struct literal);
void VisitUnary(struct unary);