abouttreesummaryrefslogcommitdiff
path: root/todo.txt
diff options
context:
space:
mode:
Diffstat (limited to 'todo.txt')
-rw-r--r--todo.txt26
1 files changed, 26 insertions, 0 deletions
diff --git a/todo.txt b/todo.txt
new file mode 100644
index 0000000..3b5d313
--- /dev/null
+++ b/todo.txt
@@ -0,0 +1,26 @@
+define grammar:
+- declarations
+ - var decl
+ - ptr/array
+ - fn decl
+ - struct/enum/union
+- statements
+ - if/while/for/switch
+ - expr
+ - assignment
+ - return
+- expressions
+ - fn call
+ - unary/binary/(ternary) operator
+ - variable "call"
+ - literal
+ - parenthesis
+ - array access
+ - .
+ - cast
+
+- complete grammar
+- semantic checks when visiting
+- type modifier
+- operator precedence
+- ...