Releases: Pivot-Studio/pivot-lang
Releases · Pivot-Studio/pivot-lang
v0.1.472
chore: some code cleanup && add test case for async/await usage
v0.1.471
feat: better fn fault tolerate
v0.1.470
try fix: orc jit exit error
v0.1.469
docs: update site url
v0.1.468
fix: make ci happy
v0.1.467
fix: wrong hint location Also polished Future crate
v0.1.466
feat: add kmp version `index_of`
v0.1.465
fix: Fix generator variable allocation bug The code changes in `src/ast/node/control.rs` fix a bug related to variable allocation in generator functions. Previously, when a variable was used in a generator, it needed to be stored in the context. However, there was an issue where the variable was not properly allocated in the context, leading to incorrect behavior. This commit addresses the bug by correctly allocating the variable in the context when inside a generator. It also adds a check to ensure that the allocation is only performed when necessary. I also added some code in iter test, to digging deeper into possibility of implement effect system based on generator.
v0.1.464
fix: debug build
v0.1.463
fix: use global variable in generator fn Previously, using global variables in generator would generate wrong ir code to load it twice. This commit also add a new cli flag `nocheck` to skip check stage. A small change in iter test was made to investigate the possibility of implementing effect system based on our generator.