summaryrefslogtreecommitdiff
path: root/include/wabt/binary-reader-nop.h
diff options
context:
space:
mode:
authorDiego Frias <styx5242@gmail.com>2023-09-15 13:49:31 -0700
committerGitHub <noreply@github.com>2023-09-15 13:49:31 -0700
commitb22be5a08611c53e8a893bbab049e6f18da6c55a (patch)
tree9b998aee94bada6db5b5715afe99d806167c8d52 /include/wabt/binary-reader-nop.h
parent0869da3eb84616b0dabefc34ea0d5326c1f43888 (diff)
downloadwabt-b22be5a08611c53e8a893bbab049e6f18da6c55a.tar.gz
wabt-b22be5a08611c53e8a893bbab049e6f18da6c55a.tar.bz2
wabt-b22be5a08611c53e8a893bbab049e6f18da6c55a.zip
Implement custom section reading/writing (#2284)
Diffstat (limited to 'include/wabt/binary-reader-nop.h')
-rw-r--r--include/wabt/binary-reader-nop.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/wabt/binary-reader-nop.h b/include/wabt/binary-reader-nop.h
index 75e28d4a..ffa3a4b7 100644
--- a/include/wabt/binary-reader-nop.h
+++ b/include/wabt/binary-reader-nop.h
@@ -519,6 +519,15 @@ class BinaryReaderNop : public BinaryReaderDelegate {
}
Result EndTargetFeaturesSection() override { return Result::Ok; }
+ /* Generic custom section */
+ Result BeginGenericCustomSection(Offset size) override { return Result::Ok; }
+ Result OnGenericCustomSection(std::string_view name,
+ const void* data,
+ Offset size) override {
+ return Result::Ok;
+ };
+ Result EndGenericCustomSection() override { return Result::Ok; }
+
/* Linking section */
Result BeginLinkingSection(Offset size) override { return Result::Ok; }
Result OnSymbolCount(Index count) override { return Result::Ok; }