├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── Makefile ├── README.md └── src ├── backend └── llvm_emitter.c ├── frontend ├── ast │ ├── ast.c │ └── ast.h ├── lexer │ ├── lexer.c │ └── lexer.h ├── parser │ ├── parser.c │ └── parser.h └── token │ └── token.h ├── main.c └── middle ├── ir_generator.c └── ir_generator.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmigosKazz/CypLang/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmigosKazz/CypLang/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmigosKazz/CypLang/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmigosKazz/CypLang/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmigosKazz/CypLang/HEAD/README.md -------------------------------------------------------------------------------- /src/backend/llvm_emitter.c: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Kazz on 11/07/2025. 3 | // 4 | -------------------------------------------------------------------------------- /src/frontend/ast/ast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmigosKazz/CypLang/HEAD/src/frontend/ast/ast.c -------------------------------------------------------------------------------- /src/frontend/ast/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmigosKazz/CypLang/HEAD/src/frontend/ast/ast.h -------------------------------------------------------------------------------- /src/frontend/lexer/lexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmigosKazz/CypLang/HEAD/src/frontend/lexer/lexer.c -------------------------------------------------------------------------------- /src/frontend/lexer/lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmigosKazz/CypLang/HEAD/src/frontend/lexer/lexer.h -------------------------------------------------------------------------------- /src/frontend/parser/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmigosKazz/CypLang/HEAD/src/frontend/parser/parser.c -------------------------------------------------------------------------------- /src/frontend/parser/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmigosKazz/CypLang/HEAD/src/frontend/parser/parser.h -------------------------------------------------------------------------------- /src/frontend/token/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmigosKazz/CypLang/HEAD/src/frontend/token/token.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmigosKazz/CypLang/HEAD/src/main.c -------------------------------------------------------------------------------- /src/middle/ir_generator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmigosKazz/CypLang/HEAD/src/middle/ir_generator.c -------------------------------------------------------------------------------- /src/middle/ir_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmigosKazz/CypLang/HEAD/src/middle/ir_generator.h --------------------------------------------------------------------------------