@calcit/procs 0.13.37 → 0.13.38
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
CHANGED
|
Binary file
|
|
@@ -32,8 +32,8 @@ body 也必须显式返回对应容器;宏不会自动添加 `%some` / `%ok`
|
|
|
32
32
|
`result:let` 展开为:
|
|
33
33
|
|
|
34
34
|
```cirru.no-check
|
|
35
|
-
(read-file path)
|
|
36
|
-
(parse-data content)
|
|
35
|
+
.and-then (read-file path) $ fn (content)
|
|
36
|
+
.and-then (parse-data content) $ fn (data)
|
|
37
37
|
save-data data
|
|
38
38
|
```
|
|
39
39
|
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Fix Option and Result binding macro method order
|
|
2
|
+
|
|
3
|
+
- Corrected `option:let` and `result:let` expansion to call `.and-then` in Calcit's method-first form.
|
|
4
|
+
- Added regression tests where a binding is an evaluated expression rather than a literal container.
|
|
5
|
+
- Corrected the RFC expansion example and linked the regression to Issue #394.
|
package/lib/package.json
CHANGED