You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .kiro/steering/03-coding-standards.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -117,5 +117,7 @@ A function declared `effects {}` that calls an effectful primitive must fail at
117
117
### Bind-Before-When Is a Parser Responsibility
118
118
The `when` guard executes before the candidate body. A bind (`<-`) is part of the body. The parser should catch bind-before-when statically (REQ-V2-2). Until V2-2 ships, the runtime hint in `_unbound_name_message` must stay in place.
119
119
120
-
### From-Import Requires Python Runtime Until V2-3 Ships
121
-
`from <hash> import name` is not yet supported in the Rust parser. The error message explains this and instructs the user to set `CODIFIDE_RUNTIME=python`. Do not remove this message until V2-3 is complete.
120
+
### From-Import Requires Store Path
121
+
`from <hash> import name` requires a store to be available at parse time.
122
+
Pass `--store <path>` to the Rust runtime, or use `CODIFIDE_RUNTIME=python`.
123
+
Both runtimes support `from`-import as of v2.0 (REQ-V2-3 complete).
0 commit comments