https://github.com/patlux/compiler
https://github.com/patlux/compiler
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/patlux/compiler
- Owner: patlux
- Created: 2025-02-10T23:08:59.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-02-13T00:01:12.000Z (4 months ago)
- Last Synced: 2025-03-07T01:47:19.577Z (3 months ago)
- Language: TypeScript
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# compiler
My first own compiler
## Steps
- [x] Lexer/Tokenizer (See https://www.nan.fyi/tokenizer)
Takes the content and breaks it down into a sequence of tokens.
- [ ] Parser
Takes the sequence of tokens and analyze the structure and make sure it conform the grammatical rules of the programming language.
...