mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 22:09:09 +00:00
get rid of bytes_read
This commit is contained in:
parent
631c642950
commit
da1bcfc8b0
2 changed files with 3 additions and 25 deletions
|
@ -30,10 +30,7 @@ pub fn get_values<'a>(
|
|||
) -> Result<(usize, Vec<Expr<'a>>), ToAstProblem> {
|
||||
let mut result = Vec::with_capacity(variables.len());
|
||||
|
||||
let memory = ExpectMemory {
|
||||
start,
|
||||
bytes_read: RefCell::new(0),
|
||||
};
|
||||
let memory = ExpectMemory { start };
|
||||
|
||||
let app = ExpectReplApp {
|
||||
memory: arena.alloc(memory),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue