about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
...
* Misc: Improve READMEBaitinq2025-06-221-34/+205
|
* Misc: Rename langBaitinq2025-06-1136-35/+36
|
* stdlib: Remove printlnBaitinq2025-06-1128-71/+64
| | | | | varargs forwarding is platform specific with llvm, so we cannot easily have this function
* Boostrap: fix aarch64 linkingBaitinq2025-06-101-8/+0
|
* Bootstrap: Start parsing and codegen of more statementsBaitinq2025-06-103-30/+208
|
* Codegen: Support function forward declarationBaitinq2025-06-101-12/+11
|
* Bootstrap: Codegen: Generate number literalsBaitinq2025-06-073-2/+68
|
* Feature: Typecheck on struct field assignmentBaitinq2025-06-064-4/+6
|
* Bootstrap: Codegen: Create bindings for llvm typesBaitinq2025-06-062-15/+21
|
* Feature: Support declaring type aliasesBaitinq2025-06-065-2/+42
|
* Bootstrap: Codegen: Continue implementationBaitinq2025-06-054-11/+43
|
* std: Add assert implBaitinq2025-06-041-0/+10
|
* Bootstrap: Codegen: Initialize all targetsBaitinq2025-06-042-6/+260
|
* Bootstrap: Codegen: Fix memory leaksBaitinq2025-06-042-0/+3
|
* Boostrap: Codegen: Generate object fileBaitinq2025-06-042-0/+55
|
* Bootstrap: Codegen: Start implementationBaitinq2025-06-033-0/+63
|
* Bootstrap: Parser: Add enough implementation to parse example -2Baitinq2025-06-032-4/+121
|
* Bootstrap: Parser: Start implementationBaitinq2025-06-032-0/+250
|
* Bootstrap: Tokenizer: Fix tokenizing '\0' charsBaitinq2025-06-031-4/+0
|
* Codegen: Fix sizeofBaitinq2025-06-022-4/+2
|
* Bootstrap: Tokenizer: Cleanup using slicesBaitinq2025-06-022-61/+67
|
* Bootstrap: Tokenizer: Support missing token typesBaitinq2025-06-011-1/+18
|
* Boostrap: Tokenizer: Fix allocationBaitinq2025-05-313-7/+6
|
* Bootstrap: Tokenizer: Start rewriting with token typeBaitinq2025-05-313-74/+254
|
* Bootstrap: Tokenizer: Rewrite using struct instead of global valuesBaitinq2025-05-311-114/+121
|
* std: Use calloc in arena implementationBaitinq2025-05-311-3/+3
|
* Bootstrap: Use arena for tokenizerBaitinq2025-05-313-19/+20
|
* std: Add arena implBaitinq2025-05-301-0/+32
|
* Feature: Support recursive structsBaitinq2025-05-302-0/+59
|
* Feature: Support structs as pointersBaitinq2025-05-302-11/+68
|
* Feature: Support custom types in llvm_get_typeBaitinq2025-05-281-2/+6
|
* Feature: Add sizeof builtin functionBaitinq2025-05-284-6/+60
|
* Feature: Finish adding struct support :^)Baitinq2025-05-274-73/+149
|
* Feature: Start adding structs supportBaitinq2025-05-256-17/+218
|
* Examples: Fix example 21Baitinq2025-05-241-2/+2
|
* Codegen: Get function return type correctlyBaitinq2025-05-241-15/+20
|
* Codegen: Fix bug with functions inside functionsBaitinq2025-05-241-4/+5
|
* Codegen: Fix bug with typecheck of return of function paramsBaitinq2025-05-246-52/+64
|
* Codegen: Typecheck binary expressionsBaitinq2025-05-234-24/+33
|
* Parser: Fix cast statement parsingBaitinq2025-05-232-11/+12
|
* Codegen: Typecheck function return types and change null typeBaitinq2025-05-222-17/+24
|
* Feature: Add more type checksBaitinq2025-05-203-36/+40
|
* Feature: Add support for casting typesBaitinq2025-05-204-5/+50
|
* Codegen: Implement proper type comparisonsBaitinq2025-05-192-5/+58
|
* Feature: Add support for !=Baitinq2025-05-194-5/+17
|
* Bootstra: Tokenizer: Allocate more memory for tokensBaitinq2025-05-181-1/+1
|
* Misc: Use println instead of printfBaitinq2025-05-1822-59/+62
|
* Codegen: Fix bug with varargs functionsBaitinq2025-05-181-11/+16
|
* Codegen: Don't allow assigning variables of different typeBaitinq2025-05-181-11/+8
|
* Codegen: Don't allow changing types on variable assignmentBaitinq2025-05-182-6/+6
|