Skip to content

Commit

Permalink
Remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
doonv committed Jan 8, 2024
1 parent 8c036f8 commit 268d3d8
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/builtin_parser/runner.rs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
//! Executes the abstract syntax tree.
use std::cell::RefCell;
use std::collections::HashMap;
use std::rc::Rc;

use environment::Environment;

use bevy::prelude::*;
use bevy::reflect::{DynamicEnum, ReflectMut, TypeInfo, TypeRegistration, VariantInfo};

use crate::command::CommandHints;
use crate::ui::COMMAND_RESULT_NAME;

Expand All @@ -15,8 +15,6 @@ use self::unique_rc::{UniqueRc, WeakRef};

use super::parser::{Ast, Expression, Operator};
use super::{Number, SpanExtension, Spanned};
use bevy::prelude::*;
use bevy::reflect::{DynamicEnum, ReflectMut, TypeInfo, TypeRegistration, VariantInfo};

pub mod environment;
pub mod error;
Expand Down

0 comments on commit 268d3d8

Please sign in to comment.