diff options
Diffstat (limited to 'src/wasm-interpreter.h')
-rw-r--r-- | src/wasm-interpreter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm-interpreter.h b/src/wasm-interpreter.h index b06afb1a1..a8eda4e8f 100644 --- a/src/wasm-interpreter.h +++ b/src/wasm-interpreter.h @@ -692,6 +692,7 @@ private: // stack traces. std::vector<Name> functionStack; +public: // Call a function, starting an invocation. Literal callFunction(Name name, LiteralList& arguments) { // if the last call ended in a jump up the stack, it might have left stuff for us to clean up here @@ -700,7 +701,6 @@ private: return callFunctionInternal(name, arguments); } -public: // Internal function call. Must be public so that callTable implementations can use it (refactor?) Literal callFunctionInternal(Name name, LiteralList& arguments) { |