Releases: Pivot-Studio/pivot-lang
Releases · Pivot-Studio/pivot-lang
v0.1.394
feat: enhance `as` cast
v0.1.393
fix: array debug
v0.1.392
fix: llvm calculates wrong offset on self rec
v0.1.391
fix: missing global init when compile args is not entry file
v0.1.390
chore: fmt
v0.1.389
refactor: separate ctx.rs into more files
v0.1.388
feat: add pretty print trait
v0.1.387
feat: add special style for captured variables - fix wrong goto def in some case - refactored PLSymbol
v0.1.386
fix: wrong ctx scope
v0.1.385
fix: better impl trait check logic think of a trait implementation of a custom type, it can only happen in two mods: the mod contains trait def or the mod contains custom type def. this commit makes use of this knowledge, reduce the complexity of trait impl check from O(n) to O(1)