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 0b10f71517
commit 0506449aa4
2 changed files with 2 additions and 2 deletions

View File

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