From 3e28445757a8904dc0927698c5b9f33d3a0caeaf Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Thu, 14 Apr 2016 17:39:03 -0700 Subject: rename function locals, to params and vars, which together are all the locals. preparation for #336 (#349) --- src/wasm.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/wasm.h') diff --git a/src/wasm.h b/src/wasm.h index 2b04ed8cd..d9c36d878 100644 --- a/src/wasm.h +++ b/src/wasm.h @@ -1066,8 +1066,8 @@ class Function { public: Name name; WasmType result; - std::vector params; - std::vector locals; + std::vector params; // function locals are params + std::vector vars; // plus vars Name type; // if null, it is implicit in params and result Expression *body; -- cgit v1.2.3