summaryrefslogtreecommitdiff
path: root/src/binary-reader.h
diff options
context:
space:
mode:
authorDmitry Bezhetskov <Dima00782@gmail.com>2021-07-26 00:41:32 +0700
committerGitHub <noreply@github.com>2021-07-25 10:41:32 -0700
commit9aac0a28896a714b698ab489a473b9bc05deb7c3 (patch)
tree7e3e40abd22146f2d76981c30dfa693290956448 /src/binary-reader.h
parent7eadc12f71483b1d9d8cf16877efa33361d1e493 (diff)
downloadwabt-9aac0a28896a714b698ab489a473b9bc05deb7c3.tar.gz
wabt-9aac0a28896a714b698ab489a473b9bc05deb7c3.tar.bz2
wabt-9aac0a28896a714b698ab489a473b9bc05deb7c3.zip
Begin support for typed function references proposal: added the flag and supported call_ref (#1691)
Diffstat (limited to 'src/binary-reader.h')
-rw-r--r--src/binary-reader.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/binary-reader.h b/src/binary-reader.h
index a688eada..1e3ec6a5 100644
--- a/src/binary-reader.h
+++ b/src/binary-reader.h
@@ -233,6 +233,7 @@ class BinaryReaderDelegate {
Index default_target_depth) = 0;
virtual Result OnCallExpr(Index func_index) = 0;
virtual Result OnCallIndirectExpr(Index sig_index, Index table_index) = 0;
+ virtual Result OnCallRefExpr() = 0;
virtual Result OnCatchExpr(Index tag_index) = 0;
virtual Result OnCatchAllExpr() = 0;
virtual Result OnCompareExpr(Opcode opcode) = 0;