Skip to content

Commit fc7ea34

Browse files
committed
try delete toolchain
1 parent 7d0a67e commit fc7ea34

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

rust-toolchain

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/ast/mod.rs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use std::fmt::Display;
1+
use std::fmt::{Display, Formatter};
22

33
pub use symbol_table::GlobalSymbol as Symbol;
44

@@ -13,10 +13,11 @@ lalrpop_mod!(
1313
"/ast/parse.rs"
1414
);
1515

16-
use crate::*;
17-
1816
mod expr;
1917
pub use expr::*;
18+
use symbolic_expressions::Sexp;
19+
20+
use crate::HashMap;
2021
pub mod desugar;
2122

2223
#[derive(Clone, Copy, Hash, PartialEq, Eq, PartialOrd, Ord, Debug)]

0 commit comments

Comments
 (0)