aboutsummaryrefslogtreecommitdiff
path: root/src/parse.hff
diff options
context:
space:
mode:
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;