aboutsummaryrefslogtreecommitdiff
path: root/src/Zcu.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2025-07-07 11:22:28 -0700
committerAndrew Kelley <andrew@ziglang.org>2025-07-07 13:39:16 -0700
commit40d11cc25a469dc6bb0f9fbba4d05e7210a23b3f (patch)
tree8f3ece572204f0ae02efe5f07581530db302dc1b /src/Zcu.zig
parent31e46be74360f7bf6509bd8826690318974175c0 (diff)
downloadzig-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.zig4
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);