aboutsummaryrefslogtreecommitdiffstats
path: root/src/compiler.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/compiler.rs')
-rw-r--r--src/compiler.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler.rs b/src/compiler.rs
index e32270e..dba0174 100644
--- a/src/compiler.rs
+++ b/src/compiler.rs
@@ -1,9 +1,9 @@
use std::path::{Path, PathBuf};
use std::rc::Rc;
+use crate::error::{Error, ErrorKind};
use crate::tokenizer::{Token, TokenStream};
use crate::vm::{Value, Block, Op};
-use crate::error::{Error, ErrorKind};
macro_rules! nextable_enum {
( $name:ident { $( $thing:ident ),* } ) => {