Skip to content

Releases: Pivot-Studio/pivot-lang

v0.1.394

24 Oct 02:44

Choose a tag to compare

feat: enhance `as` cast

v0.1.393

19 Oct 06:53

Choose a tag to compare

fix: array debug

v0.1.392

18 Oct 10:31

Choose a tag to compare

fix: llvm calculates wrong offset on self rec

v0.1.391

18 Oct 07:49

Choose a tag to compare

fix: missing global init when compile args is not entry file

v0.1.390

17 Oct 04:37

Choose a tag to compare

chore: fmt

v0.1.389

11 Oct 02:22

Choose a tag to compare

refactor: separate ctx.rs into more files

v0.1.388

08 Oct 11:25

Choose a tag to compare

feat: add pretty print trait

v0.1.387

01 Oct 01:47

Choose a tag to compare

feat: add special style for captured variables

- fix wrong goto def in some case
- refactored PLSymbol

v0.1.386

28 Sep 10:04

Choose a tag to compare

fix: wrong ctx scope

v0.1.385

28 Sep 09:47

Choose a tag to compare

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)