mirror of
https://github.com/azur1s/bobbylisp.git
synced 2024-10-16 02:37:40 -05:00
rename mod
This commit is contained in:
parent
375073ed6b
commit
fa7e2e6986
|
@ -1,8 +1,8 @@
|
||||||
#![feature(trait_alias)]
|
#![feature(trait_alias)]
|
||||||
pub mod parse;
|
pub mod read;
|
||||||
pub mod trans;
|
pub mod trans;
|
||||||
|
|
||||||
use parse::parse::{lex, parse};
|
use read::parse::{lex, parse};
|
||||||
use trans::low::{translate_expr, translate_js};
|
use trans::low::{translate_expr, translate_js};
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
use crate::parse::past::{PExpr, PLiteral, PBinaryOp, PUnaryOp};
|
use crate::read::past::{PExpr, PLiteral, PBinaryOp, PUnaryOp};
|
||||||
use super::{
|
use super::{
|
||||||
ast::{Expr, Literal, BinaryOp, UnaryOp},
|
ast::{Expr, Literal, BinaryOp, UnaryOp},
|
||||||
js::{JSExpr, JSLiteral},
|
js::{JSExpr, JSLiteral},
|
||||||
|
|
Loading…
Reference in a new issue