summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2021-10-31[AST] another bugfix for void typesKyle Gunger
2021-10-30[AST] Refactor and unary fixesKyle Gunger
+ clean up the output a bit + restructure the tree a bit with reguards to unary ops + better error checking for misuse of unary ops
2021-10-30[AST] Return and type fixesKyle Gunger
+ Allow types to include the . operator + Allow returns to have more than one value
2021-10-30[AST] Bugfix 'void'Kyle Gunger
Basic bugfix to get void types parsing. Hopefuly this fixes other bugs too.
2021-10-30[AST] Properly address "return"Kyle Gunger
2021-10-30[AST] Fixes for some statements in blocksKyle Gunger
2021-10-29[AST] General bugfixesKyle Gunger
We have emerged into the testing phase of the AST. Very basic statements seem to parse here, but not much else.
2021-10-29[AST] isTypeThenValueKyle Gunger
It might work (?)
2021-10-29[HOTFIX] Actually call a functionKyle Gunger
I am dumb, so dumb in fact that I apparently someteimes forget to actually *call* my own code.
2021-10-29[AST] Def checkingKyle Gunger
Add some placeholder code
2021-10-29[AST] Statement parsing (incomplete)Kyle Gunger
Still need to figure out a check for a type followed by a value
2021-09-03Massive changes for value and type parsing logicKyle Gunger
2021-08-31Spaghetti code checks for delimiters in valuesKyle Gunger
2021-08-30Scrap old spec, add initial value parsingKyle Gunger
2021-08-01Split main fileKyle Gunger
2021-05-03fixed bug caused by previous bugfixKyle Gunger
2021-05-03tokenizer bug fixKyle Gunger
2021-04-30Destroy my own code by using gotoKyle Gunger
2020-12-06Small updateKyle Gunger
2020-11-30Seperate tree code to multiple filesKyle Gunger
2020-11-18Remove link to parent from nodesKyle Gunger
2020-11-17small error updateKyle Gunger
2020-11-17Parse list/value list fixesKyle Gunger
2020-11-17Write value list parserKyle Gunger
2020-11-16Start of parselist funcKyle Gunger
2020-11-06Start work on AST generationKyle Gunger
2020-09-20Basic updatesKyle Gunger
- Move preprocessor to it's own file - Begin working on new delimiters - Begin working on blocks in the tree
2020-07-08Update tree structureKyle Gunger
2020-07-03Extra NumbersKyle Gunger
+ Add line and character numbers to tokens + Impliment line and character numbers ~ Line and char nums start at 0 for now ~ There's this itch in my mind like something is broken
2020-06-28[Bugfix] Literals and CommentsKyle Gunger
+ Fix literal value parsing + Remove comments from the tokenized result
2020-06-28[Initial parser] Upload existingKyle Gunger