diff options
| author | Gustav Sörnäs <gustav@sornas.net> | 2021-01-15 14:36:45 +0100 |
|---|---|---|
| committer | Gustav Sörnäs <gustav@sornas.net> | 2021-01-15 16:58:08 +0100 |
| commit | fc725d24908fbe2ba69e0994d13367438fb07db8 (patch) | |
| tree | b2a80421af9c7f339b1c1106faea8fe621eca42a /src/compiler.rs | |
| parent | e85c4984dbca6cb1bf579accf7d0ad694e619eb8 (diff) | |
| download | sylt-fc725d24908fbe2ba69e0994d13367438fb07db8.tar.gz | |
reorder imports
Diffstat (limited to 'src/compiler.rs')
| -rw-r--r-- | src/compiler.rs | 2 |
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 ),* } ) => { |
