wasm_interp: rename module value_stack -> value_store

This commit is contained in:
Brian Carroll 2022-12-17 20:24:42 +00:00
parent 84e6267508
commit a3c6cfbc0e
No known key found for this signature in database
GPG key ID: 5C7B2EC4101703C0
4 changed files with 3 additions and 3 deletions

View file

@ -9,7 +9,7 @@ use roc_wasm_module::{ExportType, WasmModule};
use roc_wasm_module::{Value, ValueType};
use crate::frame::Frame;
use crate::value_stack::ValueStack;
use crate::value_store::ValueStack;
use crate::{Error, ImportDispatcher};
#[derive(Debug)]