Break out obj module into individual files by type

object.rs was getting a little big and the implementations are only
going to get bigger.

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
2022-01-24 18:35:41 -08:00
parent 95fc8a85df
commit 5cef5b1d43
11 changed files with 404 additions and 357 deletions

View File

@@ -1,4 +1,4 @@
use crate::obj::*;
use crate::obj::prelude::*;
use crate::scope::*;
use crate::syn::ast::*;
use crate::vm::inst::*;