public void EmitStoreLocal(int index) { if (_storeLocal == null) { _storeLocal = new Instruction[LocalInstrCacheSize]; } if (index < _storeLocal.Length) { Emit(_storeLocal[index] ?? (_storeLocal[index] = new StoreLocalInstruction(index))); } else { Emit(new StoreLocalInstruction(index)); } }