feat(interface-types) Rename lowering_lifting module to numbers.

This commit is contained in:
Ivan Enderlin
2020-03-24 13:10:21 +01:00
parent 6fcd45bce3
commit afbeb5d230
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
mod argument_get; mod argument_get;
mod call_core; mod call_core;
mod lowering_lifting;
mod memory_to_string; mod memory_to_string;
mod numbers;
mod string_to_memory; mod string_to_memory;
use crate::{ use crate::{
@ -13,8 +13,8 @@ use crate::{
}; };
pub(crate) use argument_get::argument_get; pub(crate) use argument_get::argument_get;
pub(crate) use call_core::call_core; pub(crate) use call_core::call_core;
pub(crate) use lowering_lifting::*;
pub(crate) use memory_to_string::memory_to_string; pub(crate) use memory_to_string::memory_to_string;
pub(crate) use numbers::*;
use std::convert::TryFrom; use std::convert::TryFrom;
pub(crate) use string_to_memory::string_to_memory; pub(crate) use string_to_memory::string_to_memory;