Codegen multiple line strings

This commit is contained in:
Krzosa Karol
2022-09-30 16:05:19 +02:00
parent b17027f431
commit b1d05bc203
6 changed files with 25 additions and 13 deletions

View File

@@ -5,7 +5,6 @@
- [ ] '.' Operator doesn't handle expressions inside the dot chain, no good, so casts don't work
- [ ] Basic
- [ ] Introduce List to reduce heap allocations and make it more arena friendly, can we get rid of heap completly?
- [ ] Detecting if return was called
- [ ] Builtin data structures
@@ -146,6 +145,7 @@ For modules it's a bit different cause they should be distributed as valid.
## Done
- [x] Introduce List to reduce heap allocations and make it more arena friendly, can we get rid of heap completly?
- [x] Function renaming to prevent colissions, we can't really touch other stuff cause I want it to be easily debuggable
- [x] Fix Length etc. they should be function calls not operators
- [x] Idea to fix overshoot when debugging and it goes to the close bracket and there is not enough line directives. Store the last outputed line and propagate it on the close brace etc.