aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/parse/README.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/parse/README.md b/src/parse/README.md
new file mode 100644
index 00000000..c6443333
--- /dev/null
+++ b/src/parse/README.md
@@ -0,0 +1,17 @@
+# Parsing Code
+
+This folder holds the code for the parser, split across multiple files:
+
+- Binary operators: [binops.c](binops.c)
+- Container datatype literals: [containers.c](containers.c)
+- Control flow: [controlflow.c](controlflow.c)
+- Expressions: [expressions.c](expressions.c)
+- File parsing: [files.c](files.c)
+- Functions: [functions.c](functions.c)
+- Numbers/integers: [numbers.c](numbers.c)
+- Statements: [statements.c](statements.c)
+- Suffix parsing rules: [suffixes.c](suffixes.c)
+- Text: [text.c](text.c)
+- User type definitions: [typedefs.c](typedefs.c)
+- Type annotations: [types.c](types.c)
+- Utility functions: [utils.c](utils.c)