Skip to content

Commit

Permalink
checkpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
aappleby committed Oct 22, 2024
1 parent aaede0a commit 7ccb161
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.hancho
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 7ccb161

Please sign in to comment.