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/vm.rs | |
| parent | e85c4984dbca6cb1bf579accf7d0ad694e619eb8 (diff) | |
| download | sylt-fc725d24908fbe2ba69e0994d13367438fb07db8.tar.gz | |
reorder imports
Diffstat (limited to 'src/vm.rs')
| -rw-r--r-- | src/vm.rs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,8 +1,8 @@ +use owo_colors::OwoColorize; +use std::collections::HashMap; use std::fmt::Debug; use std::path::{Path, PathBuf}; use std::rc::Rc; -use std::collections::HashMap; -use owo_colors::OwoColorize; use crate::compiler::Type; use crate::error::{Error, ErrorKind}; |
