Rename mod object->obj
Also, object.rs got moved to a new directory in preparation for splitting members out into their own files Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
use crate::object::*;
|
||||
use crate::obj::*;
|
||||
use crate::scope::*;
|
||||
use crate::syn::ast::*;
|
||||
use crate::vm::inst::*;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
mod compile;
|
||||
mod object;
|
||||
mod obj;
|
||||
mod scope;
|
||||
mod syn;
|
||||
mod vm;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
use crate::object::{Float, Int, Str};
|
||||
use crate::obj::{Float, Int, Str};
|
||||
use crate::syn::span::*;
|
||||
|
||||
/// A single statement, which may be a meta-expression or a normal expression.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
use crate::object::{BuiltinExit, Obj, StrObj};
|
||||
use crate::obj::{BuiltinExit, Obj, StrObj};
|
||||
use crate::vm::{error::RuntimeError, machine::MachineBuilder};
|
||||
|
||||
impl MachineBuilder {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
use crate::object::ObjPtr;
|
||||
use crate::obj::ObjPtr;
|
||||
use crate::scope::Word;
|
||||
use crate::syn::span::Spanned;
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
use crate::compile::Compile;
|
||||
use crate::object::*;
|
||||
use crate::obj::*;
|
||||
use crate::scope::*;
|
||||
use crate::syn::{ast::SpStmt, span::Span};
|
||||
use crate::vm::{error::*, inst::*};
|
||||
|
||||
Reference in New Issue
Block a user