| Index: src/wasm/encoder.h
 | 
| diff --git a/src/wasm/encoder.h b/src/wasm/encoder.h
 | 
| index 49a7bf7d05dccddd2de13d05e96fd9255bfc3a9d..924f194752df29e711a78f51130e298b775a1c7c 100644
 | 
| --- a/src/wasm/encoder.h
 | 
| +++ b/src/wasm/encoder.h
 | 
| @@ -54,6 +54,8 @@ class WasmFunctionBuilder : public ZoneObject {
 | 
|    void EmitCode(const byte* code, uint32_t code_size,
 | 
|                  const uint32_t* local_indices, uint32_t indices_size);
 | 
|    void Emit(WasmOpcode opcode);
 | 
| +  void EmitGetLocal(uint32_t index);
 | 
| +  void EmitSetLocal(uint32_t index);
 | 
|    void EmitWithU8(WasmOpcode opcode, const byte immediate);
 | 
|    void EmitWithU8U8(WasmOpcode opcode, const byte imm1, const byte imm2);
 | 
|    void EmitWithVarInt(WasmOpcode opcode, uint32_t immediate);
 | 
| 
 |