jade-lang 0.11.1 → 0.11.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +18 -0
- data/lib/jade/frontend/type_checking/inference/record_access.rb +1 -1
- data/lib/jade/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8e5a1b96ecfb6952330c6dcb8bd01b6994b0ca8cff936a59112d5c9606412bd4
|
|
4
|
+
data.tar.gz: 066f030bb094a9d73b17acb2754f59aed7fc1bb3204e2f68be0df5e2830ad037
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b1c1f5397cfab8dafce1c63ee630c7032995be651c0ea2fcb7af51e2cff134a0f8b94c21897f53cf561c5106906c56c2267f2275d57ba6e42d6a6e7b013d003d
|
|
7
|
+
data.tar.gz: b29cbd43c8125fa086563761c9935cd3cf207ad0d10749fe701c129d0660023323698cead0c48d3bea559ee27b31441fa41c00f6697725a634c326f23777f771
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,24 @@ All notable changes to this project are documented here. The format follows
|
|
|
4
4
|
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project
|
|
5
5
|
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [0.11.2] - 2026-09-15
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **A constraint raised inside a field access reached nothing.**
|
|
12
|
+
`RecordAccess` built its result from the expected type alone, so whatever
|
|
13
|
+
the target raised was dropped at the dot. A function whose body is
|
|
14
|
+
`to_sel(q).cols` therefore recorded no constraint of its own: it took no
|
|
15
|
+
dictionary parameter, and the interface call inside it fell through to
|
|
16
|
+
`Runtime.impl_for`, which keys on the argument's own class. That dispatches
|
|
17
|
+
on `Q` when the interface is over the `c` inside it, and fails at the first
|
|
18
|
+
call — at run time, though both the types and the call sites were settled
|
|
19
|
+
when it compiled.
|
|
20
|
+
|
|
21
|
+
Deleting the `.cols` from the same program made it work, which is the
|
|
22
|
+
asymmetry that gave it away. It matters wherever an interface is over a type
|
|
23
|
+
a struct holds rather than the struct itself.
|
|
24
|
+
|
|
7
25
|
## [0.11.1] - 2026-09-15
|
|
8
26
|
|
|
9
27
|
### Added
|
data/lib/jade/version.rb
CHANGED