| author | |
| committer | |
| log | 8dccd77277d95d9a941f1e1766731cdb523526cb |
| tree | 3c7cb5f121eac27ad1d2c31da6fade431ac411b3 |
| parent | 3b0dce8ebd252161bfca237953c00b2a40705b90 |
The @"while" is still used if cont expr is missing.1 files changed, 1 insertions(+), 0 deletions(-)
lib/std/zig/Ast.zig+1| ... | ... | @@ -3220,6 +3220,7 @@ pub const Node = struct { |
| 3220 | 3220 | /// `while (lhs) : (a) b else c`. `While[rhs]`. |
| 3221 | 3221 | /// `while (lhs) |x| : (a) b else c`. `While[rhs]`. |
| 3222 | 3222 | /// `while (lhs) |x| : (a) b else |y| c`. `While[rhs]`. |
| 3223 | /// The cont expression part `: (a)` may be omitted. | |
| 3223 | 3224 | @"while", |
| 3224 | 3225 | /// `for (lhs) rhs`. |
| 3225 | 3226 | for_simple, |