remove unused imports

This commit is contained in:
Michael Sippel 2023-09-06 23:46:14 +02:00
parent e22f4cc9ac
commit 3aec30e32a
Signed by: senvas
GPG key ID: F96CF119C34B64A6
5 changed files with 3 additions and 18 deletions

View file

@ -1,7 +1,4 @@
use {
r3vi::{
view::{sequence::*}
},
crate::{
type_system::{Context, TypeTerm},
editors::list::{ListEditor, PTYListController, PTYListStyle}

View file

@ -179,7 +179,6 @@ impl TreeNav for ProductEditor {
match e.goby(direction) {
TreeNavResult::Exit => {
// *cur_depth = 1;
drop(e);
if direction.y < 0 {
if depth <= (1-direction.y) as usize {

View file

@ -1,6 +1,6 @@
use {
r3vi::{
view::{singleton::*, sequence::*}
view::{singleton::*}
},
crate::{
type_system::{ReprTree},

View file

@ -1,7 +1,4 @@
use {
r3vi::{
view::{singleton::*, sequence::*}
},
crate::{
type_system::{Context, TypeTerm, MorphismTypePattern},
terminal::{TerminalStyle, TerminalProjections},

View file

@ -6,8 +6,7 @@ pub use ctx::init_ctx;
use {
r3vi::{
buffer::{singleton::*},
view::{singleton::*, sequence::*}
buffer::{singleton::*}
},
crate::{
type_system::{Context, TypeID, TypeTerm, ReprTree},
@ -122,17 +121,13 @@ impl TypeTermEditor {
editor.set_state( State::Char );
editor.send_cmd_obj(ReprTree::from_char(&ctx, *c));
}
_ => {}
}
node.goto(TreeCursor::none());
node
}
fn set_state(&mut self, new_state: State) {
let old_node = self.cur_node.get();
fn set_state(&mut self, new_state: State) {
let mut node = match new_state {
State::Any => {
Context::make_node( &self.ctx, (&self.ctx, "( List Char )").into(), self.depth ).unwrap()
@ -168,9 +163,6 @@ impl TypeTermEditor {
Context::make_node( &self.ctx, (&self.ctx, "( Char )").into(), self.depth ).unwrap()
.morph( (&self.ctx, "( Type::Lit::Char )").into() )
}
_ => {
old_node
}
};
node.goto(TreeCursor::home());