Factor out definition into separate file in compiler series

This commit is contained in:
2019-11-05 10:40:51 -08:00
parent c79b5a4120
commit 9aef499deb
6 changed files with 68 additions and 56 deletions

View File

@@ -3,6 +3,7 @@
%{
#include <iostream>
#include "ast.hpp"
#include "definition.hpp"
#include "parser.hpp"
#define YY_DECL yy::parser::symbol_type yylex()