@@ -28,7 +28,7 @@ enum class WASMOpcode : size_t {
2828#define WABT_OPCODE (rtype, type1, type2, type3, memSize, prefix, code, name, \
2929 text, decomp) \
3030 name##Opcode,
31- #include " parser /opcode.def"
31+ #include " wabt /opcode.def"
3232#undef WABT_OPCODE
3333 OpcodeKindEnd,
3434};
@@ -103,7 +103,7 @@ WASMCodeInfo g_wasmCodeInfo[static_cast<size_t>(WASMOpcode::OpcodeKindEnd)] = {
103103 WASMCodeInfo::rtype, \
104104 { WASMCodeInfo::type1, WASMCodeInfo::type2, WASMCodeInfo::type3 }, \
105105 text },
106- #include " parser /opcode.def"
106+ #include " wabt /opcode.def"
107107#undef WABT_OPCODE
108108};
109109
@@ -779,11 +779,11 @@ class WASMBinaryReader : public wabt::WASMBinaryReaderDelegate {
779779 moduleName, fieldName, m_result.m_tableTypes [tableIndex]));
780780 }
781781
782- virtual void OnImportMemory (Index importIndex, std::string moduleName, std::string fieldName, Index memoryIndex, size_t initialSize, size_t maximumSize, bool is_shared ) override
782+ virtual void OnImportMemory (Index importIndex, std::string moduleName, std::string fieldName, Index memoryIndex, size_t initialSize, size_t maximumSize, bool isShared ) override
783783 {
784784 ASSERT (memoryIndex == m_result.m_memoryTypes .size ());
785785 ASSERT (m_result.m_imports .size () == importIndex);
786- m_result.m_memoryTypes .push_back (new Walrus::MemoryType (initialSize, maximumSize, is_shared ));
786+ m_result.m_memoryTypes .push_back (new Walrus::MemoryType (initialSize, maximumSize, isShared ));
787787 m_result.m_imports .push_back (new Walrus::ImportType (
788788 Walrus::ImportType::Memory,
789789 moduleName, fieldName, m_result.m_memoryTypes [memoryIndex]));
@@ -886,10 +886,10 @@ class WASMBinaryReader : public wabt::WASMBinaryReaderDelegate {
886886 m_result.m_memoryTypes .reserve (count);
887887 }
888888
889- virtual void OnMemory (Index index, uint64_t initialSize, uint64_t maximumSize, bool is_shared ) override
889+ virtual void OnMemory (Index index, uint64_t initialSize, uint64_t maximumSize, bool isShared ) override
890890 {
891891 ASSERT (index == m_result.m_memoryTypes .size ());
892- m_result.m_memoryTypes .push_back (new Walrus::MemoryType (initialSize, maximumSize, is_shared ));
892+ m_result.m_memoryTypes .push_back (new Walrus::MemoryType (initialSize, maximumSize, isShared ));
893893 }
894894
895895 virtual void OnDataSegmentCount (Index count) override
0 commit comments