Rename to implementation.rs.
This commit is contained in:
parent
22e8605cc6
commit
172e82025d
@ -1,9 +1,9 @@
|
|||||||
use deimos::vm::field::DvmField;
|
use deimos::vm::field::DvmField;
|
||||||
use deimos::vm::function::DvmFunction;
|
use deimos::vm::function::DvmFunction;
|
||||||
|
use deimos::vm::implementation::DvmImplementation;
|
||||||
use deimos::vm::interface::DmInterface;
|
use deimos::vm::interface::DmInterface;
|
||||||
use deimos::vm::lib::{DmConstant, DmLib};
|
use deimos::vm::lib::{DmConstant, DmLib};
|
||||||
use deimos::vm::method::DvmMethod;
|
use deimos::vm::method::DvmMethod;
|
||||||
use deimos::vm::object_type::DvmImplementation;
|
|
||||||
use deimos::vm::op_codes::{
|
use deimos::vm::op_codes::{
|
||||||
add_alloc, add_dealloc, add_invoke_fn, add_mov_const, add_platform_call, add_store,
|
add_alloc, add_dealloc, add_invoke_fn, add_mov_const, add_platform_call, add_store,
|
||||||
};
|
};
|
||||||
|
@ -4,8 +4,8 @@ mod symbol;
|
|||||||
mod write;
|
mod write;
|
||||||
|
|
||||||
use crate::vm::function::DvmFunction;
|
use crate::vm::function::DvmFunction;
|
||||||
|
use crate::vm::implementation::DvmImplementation;
|
||||||
use crate::vm::interface::DmInterface;
|
use crate::vm::interface::DmInterface;
|
||||||
use crate::vm::object_type::DvmImplementation;
|
|
||||||
use std::rc::Rc;
|
use std::rc::Rc;
|
||||||
|
|
||||||
pub struct DmLib {
|
pub struct DmLib {
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
mod array;
|
mod array;
|
||||||
mod field;
|
mod field;
|
||||||
mod function;
|
mod function;
|
||||||
|
pub mod implementation;
|
||||||
mod instruction;
|
mod instruction;
|
||||||
mod interface;
|
mod interface;
|
||||||
pub mod lib;
|
pub mod lib;
|
||||||
mod method;
|
mod method;
|
||||||
pub mod object;
|
pub mod object;
|
||||||
pub mod object_type;
|
|
||||||
pub mod op_codes;
|
pub mod op_codes;
|
||||||
pub mod platform;
|
pub mod platform;
|
||||||
mod pointer;
|
mod pointer;
|
||||||
@ -15,9 +15,9 @@ pub mod util;
|
|||||||
pub mod value;
|
pub mod value;
|
||||||
mod virtual_method;
|
mod virtual_method;
|
||||||
|
|
||||||
|
use crate::vm::implementation::DvmImplementation;
|
||||||
use crate::vm::instruction::{Immediate, Instruction, Location, SourceCodeLocation};
|
use crate::vm::instruction::{Immediate, Instruction, Location, SourceCodeLocation};
|
||||||
use crate::vm::object::DvmObject;
|
use crate::vm::object::DvmObject;
|
||||||
use crate::vm::object_type::DvmImplementation;
|
|
||||||
use crate::vm::pointer::DvmPointer;
|
use crate::vm::pointer::DvmPointer;
|
||||||
use crate::vm::value::DvmValue;
|
use crate::vm::value::DvmValue;
|
||||||
use function::DvmFunction;
|
use function::DvmFunction;
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
|
use crate::vm::implementation::DvmImplementation;
|
||||||
use crate::vm::method::DvmMethod;
|
use crate::vm::method::DvmMethod;
|
||||||
use crate::vm::object_type::DvmImplementation;
|
|
||||||
use crate::vm::value::DvmValue;
|
use crate::vm::value::DvmValue;
|
||||||
use std::rc::Rc;
|
use std::rc::Rc;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user