@calcit/procs 0.13.24 → 0.13.26
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.
- package/.yarn/install-state.gz +0 -0
- package/RFCs/08-19-transparent-union-types-rfc.md +5 -5
- package/history/202608191418-rfc-defenum-syntax.md +4 -0
- package/history/202608191430-transparent-union-review.md +5 -0
- package/history/202608191501-release-01326.md +4 -0
- package/lib/package.json +1 -1
- package/package.json +1 -1
package/.yarn/install-state.gz
CHANGED
|
Binary file
|
|
@@ -33,9 +33,9 @@ deftype RespoNode
|
|
|
33
33
|
|
|
34
34
|
```cirru.no-check
|
|
35
35
|
defenum RequestState
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
36
|
+
:idle
|
|
37
|
+
:loading
|
|
38
|
+
:failed 'String
|
|
39
39
|
```
|
|
40
40
|
|
|
41
41
|
`deftype` 表示已有类型之间的静态集合,不产生新的值构造器:
|
|
@@ -505,8 +505,8 @@ Trait 适合共同方法,但 Respo diff 需要按具体节点种类读取不
|
|
|
505
505
|
|
|
506
506
|
```cirru.no-check
|
|
507
507
|
defenum RespoNode
|
|
508
|
-
|
|
509
|
-
|
|
508
|
+
:component 'Component
|
|
509
|
+
:element 'Element
|
|
510
510
|
```
|
|
511
511
|
|
|
512
512
|
这会改变 Respo 当前数据表示、相等性路径和 DSL 输出。`deftype` 的目标正是获得相同的静态分支能力,而不引入这层运行时包装。
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Transparent union review fixes
|
|
2
|
+
|
|
3
|
+
- Made test-only semantic-version helpers private to remove unnecessary crate visibility.
|
|
4
|
+
- Added regression coverage for transparent-union struct matching through nominal fallback and imported namespace resolution when scope types are empty.
|
|
5
|
+
- Full Rust tests and Clippy validation passed; the repository-wide agent-interface check still reports an existing deprecated `cr config version` scenario.
|
package/lib/package.json
CHANGED