diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2025-07-07 11:22:28 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2025-07-07 13:39:16 -0700 |
| commit | 40d11cc25a469dc6bb0f9fbba4d05e7210a23b3f (patch) | |
| tree | 8f3ece572204f0ae02efe5f07581530db302dc1b /src/Zcu.zig | |
| parent | 31e46be74360f7bf6509bd8826690318974175c0 (diff) | |
| download | zig-40d11cc25a469dc6bb0f9fbba4d05e7210a23b3f.tar.gz zig-40d11cc25a469dc6bb0f9fbba4d05e7210a23b3f.zip | |
remove `async` and `await` keywords
Also remove `@frameSize`, closing #3654.
While the other machinery might remain depending on #23446, it is
settled that there will not be `async`/ `await` keywords in the
language.
Diffstat (limited to 'src/Zcu.zig')
| -rw-r--r-- | src/Zcu.zig | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/Zcu.zig b/src/Zcu.zig index e69a66353f..24e7213753 100644 --- a/src/Zcu.zig +++ b/src/Zcu.zig @@ -1443,12 +1443,8 @@ pub const SrcLoc = struct { .field_access => tree.nodeData(node).node_and_token[1], .call_one, .call_one_comma, - .async_call_one, - .async_call_one_comma, .call, .call_comma, - .async_call, - .async_call_comma, => blk: { const full = tree.fullCall(&buf, node).?; break :blk tree.lastToken(full.ast.fn_expr); |
