Rename wasm::Break(If) to wasm::Branch(If) for clarity

This commit is contained in:
Alex Beregszaszi
2020-05-21 00:02:02 +01:00
parent 32bec6b374
commit cfdfa36065
6 changed files with 22 additions and 22 deletions
+2 -2
View File
@@ -48,9 +48,9 @@ public:
std::string operator()(wasm::GlobalAssignment const& _assignment);
std::string operator()(wasm::If const& _if);
std::string operator()(wasm::Loop const& _loop);
std::string operator()(wasm::Break const& _break);
std::string operator()(wasm::Branch const& _branch);
std::string operator()(wasm::BranchIf const& _branchIf);
std::string operator()(wasm::Return const& _return);
std::string operator()(wasm::BreakIf const& _break);
std::string operator()(wasm::Block const& _block);
private: