diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-08-25 01:48:18 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-08-25 01:48:18 -0400 |
| commit | d3751d4838b3e07618ae7c5c5888cb6d2b482fb8 (patch) | |
| tree | 15104e6e06e880e1052a5e10dfdd317d83e24032 /src | |
| parent | 6ffd8467af7c6138196930116fecf27fca9b8604 (diff) | |
More docs
Diffstat (limited to 'src')
| -rw-r--r-- | src/parse/README.md | 17 |
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) |
