aboutsummaryrefslogtreecommitdiff
path: root/src/all_types.hpp
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2018-07-27 17:27:03 -0400
committerAndrew Kelley <superjoe30@gmail.com>2018-07-27 17:27:03 -0400
commit02c5bda704d30e95e6af23804f9a552e9d8ca2d7 (patch)
treebb7ebbd3bfd59dbf5ac9a97364feb57868a45281 /src/all_types.hpp
parent442e244b4dd371d674436a163d62efdcd4e17a00 (diff)
downloadzig-02c5bda704d30e95e6af23804f9a552e9d8ca2d7.tar.gz
zig-02c5bda704d30e95e6af23804f9a552e9d8ca2d7.zip
remove ability to break from suspend blocks
closes #803
Diffstat (limited to 'src/all_types.hpp')
-rw-r--r--src/all_types.hpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/all_types.hpp b/src/all_types.hpp
index 3ac7afe474..2f09e70301 100644
--- a/src/all_types.hpp
+++ b/src/all_types.hpp
@@ -898,7 +898,6 @@ struct AstNodeAwaitExpr {
};
struct AstNodeSuspend {
- Buf *name;
AstNode *block;
AstNode *promise_symbol;
};
@@ -1929,7 +1928,6 @@ struct ScopeLoop {
struct ScopeSuspend {
Scope base;
- Buf *name;
IrBasicBlock *resume_block;
bool reported_err;
};