DonIsaac / zlint

A linter for the Zig programming language
MIT License
24 stars 1 forks source link

feat(semantic): bind if/else payloads #91

Closed DonIsaac closed 6 days ago

DonIsaac commented 6 days ago

x and err now get bound

const res: anyerror!u32 = 1;
if (res) |x| {
  _ = x;
} else |err| {
  _ = err;
}

Also adds s_payload symbol flag.