From fc725d24908fbe2ba69e0994d13367438fb07db8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustav=20S=C3=B6rn=C3=A4s?= Date: Fri, 15 Jan 2021 14:36:45 +0100 Subject: reorder imports --- src/compiler.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/compiler.rs') 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 ),* } ) => { -- cgit v1.2.1