summaryrefslogtreecommitdiff
path: root/src/binary-reader-nop.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/binary-reader-nop.h')
-rw-r--r--src/binary-reader-nop.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/binary-reader-nop.h b/src/binary-reader-nop.h
index 250cfc23..ccbc14af 100644
--- a/src/binary-reader-nop.h
+++ b/src/binary-reader-nop.h
@@ -167,6 +167,9 @@ class BinaryReaderNop : public BinaryReaderDelegate {
Result OnOpcode(Opcode Opcode) override { return Result::Ok; }
Result OnOpcodeBare() override { return Result::Ok; }
Result OnOpcodeIndex(Index value) override { return Result::Ok; }
+ Result OnOpcodeIndexIndex(Index value, Index value2) override {
+ return Result::Ok;
+ }
Result OnOpcodeUint32(uint32_t value) override { return Result::Ok; }
Result OnOpcodeUint32Uint32(uint32_t value, uint32_t value2) override {
return Result::Ok;
@@ -206,6 +209,9 @@ class BinaryReaderNop : public BinaryReaderDelegate {
Result OnBlockExpr(Type sig_type) override { return Result::Ok; }
Result OnBrExpr(Index depth) override { return Result::Ok; }
Result OnBrIfExpr(Index depth) override { return Result::Ok; }
+ Result OnBrOnExnExpr(Index depth, Index event_index) override {
+ return Result::Ok;
+ }
Result OnBrTableExpr(Index num_targets,
Index* target_depths,
Index default_target_depth) override {