about summary refs log tree commit diff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Bootstrap: Use arena for tokenizerBaitinq2025-05-312-16/+20
|
* Feature: Support recursive structsBaitinq2025-05-301-0/+11
|
* Feature: Support structs as pointersBaitinq2025-05-301-11/+28
|
* Feature: Support custom types in llvm_get_typeBaitinq2025-05-281-2/+6
|
* Feature: Add sizeof builtin functionBaitinq2025-05-282-3/+55
|
* Feature: Finish adding struct support :^)Baitinq2025-05-272-65/+128
|
* Feature: Start adding structs supportBaitinq2025-05-254-16/+175
|
* 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-241-6/+17
|
* Codegen: Typecheck binary expressionsBaitinq2025-05-233-22/+31
|
* Parser: Fix cast statement parsingBaitinq2025-05-231-7/+8
|
* 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-203-4/+47
|
* Codegen: Implement proper type comparisonsBaitinq2025-05-192-5/+58
|
* Feature: Add support for !=Baitinq2025-05-193-4/+16
|
* Bootstra: Tokenizer: Allocate more memory for tokensBaitinq2025-05-181-1/+1
|
* Misc: Use println instead of printfBaitinq2025-05-182-8/+7
|
* 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
|
* Feature: Add support for continue statementBaitinq2025-05-184-24/+50
|
* Tokenizer: Cleanup consuming logicBaitinq2025-05-172-74/+60
|
* Codegen: Fix bug with if generation in nested functionsBaitinq2025-05-172-33/+31
|
* Bootstrap: Tokenizer: Tokenize identifiersBaitinq2025-05-171-11/+23
|
* Bootstrap: Tokenizer: Tokenize charsBaitinq2025-05-171-10/+98
|
* Tokenzier: Correctly handle char escapingBaitinq2025-05-171-6/+17
|
* Codegen: Fix bug with global functions as paramsBaitinq2025-05-171-2/+4
|
* Bootstrap: Tokenizer: Tokenize intsBaitinq2025-05-152-2/+52
|
* Feature: Add support for null pointersBaitinq2025-05-153-1/+20
|
* Bootstrap: Tokenizer: Tokenize keywordsBaitinq2025-05-151-4/+81
|
* Bootstrap: Tokenizer: Continue implementingBaitinq2025-05-153-7/+58
|
* Codegen: Fix bug with nested ifsBaitinq2025-05-151-2/+2
|
* Bootstrap: Require filename argumentBaitinq2025-05-141-0/+5
|
* bootstrap: tokenizer: more changesBaitinq2025-05-141-1/+46
|
* Feature: Add support for break statementBaitinq2025-05-123-4/+30
|
* boostrap: tokenizer: cleanBaitinq2025-05-121-10/+25
|
* Feature: Add support for GE and LE comparisonsBaitinq2025-05-112-1/+25
|
* Bootstrap: cleanupBaitinq2025-05-112-46/+50
|
* Codegen: Fix: Don't change underlying type if dereferenceBaitinq2025-05-101-2/+4
|
* Codegen: Support declaring functions multiple timesBaitinq2025-05-102-21/+20
|
* Feature: Add initial stdlibBaitinq2025-05-101-10/+17
|
* Codegen: Add varags hack for use in paramsBaitinq2025-05-101-0/+1
|
* Feature: Support returning void from functionsBaitinq2025-05-102-5/+10
|