aboutsummaryrefslogtreecommitdiff
path: root/demos/sample-files
diff options
context:
space:
mode:
authorkartofen <kartofen.mail.0@protonmail.com>2025-09-27 11:21:21 +0300
committerkartofen <kartofen.mail.0@protonmail.com>2025-09-27 11:21:21 +0300
commitadcadb01becb36c79d881080d399328de051e301 (patch)
treec759aac6773a8722d5d61291a9a1318aff967161 /demos/sample-files
parentfec8e3a95becfb3dc2a3eb0f512a120a7a4551c5 (diff)
use ninja for building
Diffstat (limited to 'demos/sample-files')
-rw-r--r--demos/sample-files/lbp-skeleton.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/demos/sample-files/lbp-skeleton.c b/demos/sample-files/lbp-skeleton.c
index 1ee54d8..90d0448 100644
--- a/demos/sample-files/lbp-skeleton.c
+++ b/demos/sample-files/lbp-skeleton.c
@@ -7,10 +7,9 @@
// TODO: - lr parser is bad for debugging (now its better)
// - deal with errors (the token queue for example)!!!!
-// - debuginfo in the token that gets propagaded through the
-// stack_items and lr_parse returns a generic errorinfo
-// with user-implemented compilation error messages
// - ast should show the specific operation (match, assignment, etc)
+// - merge the debuginfo for each reduction !
+
#define MIN(a, b) ((a) > (b) ? (b) : (a))
#define MAX(a, b) ((a) > (b) ? (a) : (b))