✓
Passing This code compiles and runs correctly.
Code
// Test: Parser should handle void event chaining
// Void events (no output branches) should support continuation syntax
// ~void-event() |> next_event() should create a continuation
tor void-event {}
tor another-void {}
// This should parse as a flow with ONE continuation
// Initial invocation: void-event()
// Continuation: |> another-void() (no branch specifier needed)
void-event() |> another-void()
Flows
flow ~void-event click a branch to expand · @labels scroll to their anchor
void-event