aboutsummaryrefslogtreecommitdiff
path: root/src/parse.hff
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2022-08-10 04:12:33 +0200
committerlemon <lsof@mailbox.org>2022-08-10 04:12:33 +0200
commitb33ee6afa74ab1e83554d1b535d81c7df0b3fca5 (patch)
treed5fb52a1529bf35658468adae796757e664bc792 /src/parse.hff
parent769aa95cf3374117c86ec652117dcbab97497eec (diff)
many bugfix
Diffstat (limited to 'src/parse.hff')
-rw-r--r--src/parse.hff27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/parse.hff b/src/parse.hff
deleted file mode 100644
index 9976df3..0000000
--- a/src/parse.hff
+++ /dev/null
@@ -1,27 +0,0 @@
-struct Loc {
- fileid u16,
- idx isize,
- col int,
- line int,
-}
-
-#[lax]
-enum TokT {
- kw_or
-}
-
-struct Tok {
- t int,
- u union {
- i i64
- },
-}
-
-struct Decl {
-}
-
-struct Parser {
-
-}
-
-extern fn parse(P *Parser, path *const u8) [#]Decl;