summaryrefslogtreecommitdiff
path: root/src/parser
diff options
context:
space:
mode:
authorFrank Emrich <git@emrich.io>2024-08-09 21:30:56 +0100
committerGitHub <noreply@github.com>2024-08-09 13:30:56 -0700
commit3386e642c76028438fc783bf97089115ea9a900f (patch)
tree3ea6d4fcc69aaca0c7527ccbd9c07176c6c24eda /src/parser
parentb3e22d29451fbf52521d59ea34e8a5d735c4149c (diff)
downloadbinaryen-3386e642c76028438fc783bf97089115ea9a900f.tar.gz
binaryen-3386e642c76028438fc783bf97089115ea9a900f.tar.bz2
binaryen-3386e642c76028438fc783bf97089115ea9a900f.zip
Typed continuations: update syntax of handler clauses (#6824)
The syntax for handler clauses in `resume` instructions has recently changed, using `on` instead of `tag` now. Instead of ``` (resume $ct (tag $tag0 $block0) ... (tag $tagn $blockn)) ``` we now have ``` (resume $ct (on $tag0 $block0) ... (on $tagn $blockn)) ``` This PR adapts parsing, printing, and some tests accordingly. (Note that this PR deliberately makes none of the other changes that will arise from implementing the new, combined stack switching proposal, yet.)
Diffstat (limited to 'src/parser')
-rw-r--r--src/parser/parsers.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parser/parsers.h b/src/parser/parsers.h
index e3434d1e6..ef46a395a 100644
--- a/src/parser/parsers.h
+++ b/src/parser/parsers.h
@@ -2426,7 +2426,7 @@ makeContNew(Ctx& ctx, Index pos, const std::vector<Annotation>& annotations) {
return ctx.makeContNew(pos, annotations, *type);
}
-// resume ::= 'resume' typeidx ('(' 'tag' tagidx labelidx ')')*
+// resume ::= 'resume' typeidx ('(' 'on' tagidx labelidx ')')*
template<typename Ctx>
Result<>
makeResume(Ctx& ctx, Index pos, const std::vector<Annotation>& annotations) {
@@ -2434,7 +2434,7 @@ makeResume(Ctx& ctx, Index pos, const std::vector<Annotation>& annotations) {
CHECK_ERR(type);
auto tagLabels = ctx.makeTagLabelList();
- while (ctx.in.takeSExprStart("tag"sv)) {
+ while (ctx.in.takeSExprStart("on"sv)) {
auto tag = tagidx(ctx);
CHECK_ERR(tag);
auto label = labelidx(ctx);