summaryrefslogtreecommitdiffhomepage
path: root/CompilerFrontend/cl/dparse.d
diff options
context:
space:
mode:
Diffstat (limited to 'CompilerFrontend/cl/dparse.d')
-rw-r--r--CompilerFrontend/cl/dparse.d21
1 files changed, 0 insertions, 21 deletions
diff --git a/CompilerFrontend/cl/dparse.d b/CompilerFrontend/cl/dparse.d
deleted file mode 100644
index b6537ec..0000000
--- a/CompilerFrontend/cl/dparse.d
+++ /dev/null
@@ -1,21 +0,0 @@
-
-/*
- * ========================================================
- *
- * MP-UX C Compiler
- * Copyright WestCo, all rights reserved.
- *
- * ========================================================
- */
-
-module cl.dparse;
-
-//Parse D syntax, from a line to AST.
-
-struct ast_type
-{
- string p_keyword;
- ast_type* p_prev;
- ast_type* p_next;
-}
-