diff options
author | Sam Clegg <sbc@chromium.org> | 2020-10-02 12:27:47 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-02 12:27:47 -0700 |
commit | be5e8bf8ec698f9ad3a1b6fbb412680995fe39bf (patch) | |
tree | b7954db51b15e097cecd2ab39ffaf8bdb05403b9 /src/binary.cc | |
parent | ee87440dedb4335d5ca8ec25e86b36c27a5b3368 (diff) | |
download | wabt-be5e8bf8ec698f9ad3a1b6fbb412680995fe39bf.tar.gz wabt-be5e8bf8ec698f9ad3a1b6fbb412680995fe39bf.tar.bz2 wabt-be5e8bf8ec698f9ad3a1b6fbb412680995fe39bf.zip |
Add initial support for extended names sections (#1554)
See: https://github.com/WebAssembly/extended-name-section
Although this is only a phase 1 proposal its seems pretty
straight forward, and is already being implemented in
binaryen.
Diffstat (limited to 'src/binary.cc')
-rw-r--r-- | src/binary.cc | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/binary.cc b/src/binary.cc index 6e993ab6..60b20cbb 100644 --- a/src/binary.cc +++ b/src/binary.cc @@ -42,4 +42,21 @@ const char* GetSectionName(BinarySection sec) { } } +const char* NameSubsectionName[] = { + "module", + "function", + "local", + "label", + "type", + "table", + "memory", + "global", + "elemseg", + "dataseg", +}; + +const char* GetNameSectionSubsectionName(NameSectionSubsection subsec) { + return NameSubsectionName[size_t(subsec)]; +} + } // namespace wabt |