From 7ccb16115b5fe5c0da3a731394fb818a9ecadce4 Mon Sep 17 00:00:00 2001 From: Austin Appleby Date: Mon, 21 Oct 2024 20:53:41 -0700 Subject: [PATCH] checkpoint --- build.hancho | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.hancho b/build.hancho index f00da52..59e86af 100644 --- a/build.hancho +++ b/build.hancho @@ -7,14 +7,14 @@ hancho.cpp_config = hancho.Config( test_dir = "{repo_dir}", ) +hancho.c_lexer = hancho.load("examples/c_lexer/c_lexer.hancho") +hancho.c_parser = hancho.load("examples/c_parser/c_parser.hancho") + json = hancho.load("examples/json/json.hancho") regex = hancho.load("examples/regex/regex.hancho") toml = hancho.load("examples/toml/toml.hancho") tests = hancho.load("tests/tests.hancho") - -c_lexer = hancho.load("examples/c_lexer/c_lexer.hancho") -c_parser = hancho.load("examples/c_parser/c_parser.hancho", c_lexer = c_lexer) -tutorial = hancho.load("examples/tutorial/tutorial.hancho", c_lexer = c_lexer, c_parser = c_parser) +tutorial = hancho.load("examples/tutorial/tutorial.hancho") ini = hancho( hancho.rules.cpp_lib,