aboutsummaryrefslogtreecommitdiff
path: root/src/parse/README.md
blob: c6443333ff299e3e7eb635797882bd440ab2ea19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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)