Reference: async and concurrency
Reference: async and concurrency
Section titled “Reference: async and concurrency”Keywords
Section titled “Keywords”asyncandawaitare recognized by the lexer (token.rs).spawnis a keyword used for fire-and-forget style tasks in examples (see lexer tests and GUI roadmap).
Bare-keyword workflow shapes
Section titled “Bare-keyword workflow shapes”workflow,activity, andactorblocks are part of Grammar Unification.- Runtime note: durable scheduling and journal-backed replay are not universally implemented; see
durability-runtime-audit-2026.mdand the parse-vs-runtime note inAGENTS.md.
CLI vs LSP validation paths
Section titled “CLI vs LSP validation paths”vox checkruns the full compiler pipeline including pipeline-level guards.vox-lspvalidation follows lex → parse → typecheck (seevox-lsp/src/lib.rs); behavior may differ when pipeline-only diagnostics exist.