Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rewrite scanner in C and update deps/manifests/bindings #2

Merged
merged 4 commits into from
Feb 25, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: update tests
  • Loading branch information
amaanq committed Jul 4, 2023
commit 439d5a340063e770e510aee185002850ff81e5e9
26 changes: 13 additions & 13 deletions corpus/big
Original file line number Diff line number Diff line change
Expand Up @@ -26,25 +26,25 @@ Bake for ~{20%minutes} until puffed and golden brown all over.
(metadata)
(metadata)
(step
(cookware)
(ingredient (amount (quantity) (units)))
(ingredient (amount (quantity) (units)))
(ingredient (amount (quantity) (units))))
(cookware (name))
(ingredient (name) (amount (quantity) (units)))
(ingredient (name) (amount (quantity) (units)))
(ingredient (name) (amount (quantity) (units))))
(step
(ingredient (amount (quantity) (units)))
(ingredient (amount (quantity) (units))))
(ingredient (name) (amount (quantity) (units)))
(ingredient (name) (amount (quantity) (units))))
(step
(cookware)
(ingredient (amount (quantity) (units)))
(ingredient)
(cookware (name))
(ingredient (name) (amount (quantity) (units)))
(ingredient (name))
(timer (amount (quantity) (units))))
(step)
(step
(cookware)
(ingredient (amount (quantity) (units)))
(cookware (name))
(ingredient (name) (amount (quantity) (units)))
(timer (amount (quantity) (units))))
(step
(ingredient (amount (quantity) (units)))
(ingredient))
(ingredient (name) (amount (quantity) (units)))
(ingredient (name)))
(step
(timer (amount (quantity) (units)))))
8 changes: 4 additions & 4 deletions corpus/step
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ I need @potato{1%gram}.

---

(recipe (step (ingredient (amount (quantity) (units)))))
(recipe (step (ingredient (name) (amount (quantity) (units)))))

====================
Multiword Ingredient
Expand All @@ -16,7 +16,7 @@ I need @sweet potato{}.

---

(recipe (step (ingredient)))
(recipe (step (ingredient (name))))

==============
Big Ingredient
Expand All @@ -26,7 +26,7 @@ Big Ingredient

---

(recipe (step (ingredient (amount (quantity) (units)))))
(recipe (step (ingredient (name) (amount (quantity) (units)))))

===============
Simple Cookware
Expand All @@ -36,7 +36,7 @@ I need #pot{1%lb}.

---

(recipe (step (cookware (amount (quantity) (units)))))
(recipe (step (cookware (name) (amount (quantity) (units)))))

============
Simple Timer
Expand Down