Rename FunctionBuilder back to CodeBuilder

This commit is contained in:
Brian Carroll 2021-10-23 13:48:20 +02:00
parent dbe6d195f7
commit 973626fe2d
6 changed files with 20 additions and 20 deletions

View file

@ -1,6 +1,6 @@
use roc_mono::layout::{Layout, UnionLayout};
use crate::{function_builder::ValueType, PTR_SIZE, PTR_TYPE};
use crate::{code_builder::ValueType, PTR_SIZE, PTR_TYPE};
// See README for background information on Wasm locals, memory and function calls
#[derive(Debug, Clone)]