mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-03 00:24:34 +00:00
wasm_interp: rename module value_stack -> value_store
This commit is contained in:
parent
84e6267508
commit
a3c6cfbc0e
4 changed files with 3 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
||||||
use roc_wasm_module::{parse::Parse, Value, ValueType};
|
use roc_wasm_module::{parse::Parse, Value, ValueType};
|
||||||
use std::iter::repeat;
|
use std::iter::repeat;
|
||||||
|
|
||||||
use crate::value_stack::ValueStack;
|
use crate::value_store::ValueStack;
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct Frame {
|
pub struct Frame {
|
||||||
|
|
|
@ -9,7 +9,7 @@ use roc_wasm_module::{ExportType, WasmModule};
|
||||||
use roc_wasm_module::{Value, ValueType};
|
use roc_wasm_module::{Value, ValueType};
|
||||||
|
|
||||||
use crate::frame::Frame;
|
use crate::frame::Frame;
|
||||||
use crate::value_stack::ValueStack;
|
use crate::value_store::ValueStack;
|
||||||
use crate::{Error, ImportDispatcher};
|
use crate::{Error, ImportDispatcher};
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
mod frame;
|
mod frame;
|
||||||
mod instance;
|
mod instance;
|
||||||
mod tests;
|
mod tests;
|
||||||
mod value_stack;
|
mod value_store;
|
||||||
pub mod wasi;
|
pub mod wasi;
|
||||||
|
|
||||||
// Main external interface
|
// Main external interface
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue