053 reject old tap syntax

✓ Passing This code compiles and runs correctly.

Code

// Test: Parser should reject old tap syntax
// The old syntax `~source -> dest` was replaced with `~tap(source -> dest)`

const std = @import("std");

~event foo {}
| done {}

// OLD SYNTAX - should be rejected with helpful error
~foo -> *
| done _ |> _
input.kz

Test Configuration

Expected Behavior:

FRONTEND_COMPILE_ERROR

Expected Error:

invalid flow invocation