mirror of
https://github.com/RustPython/Parser.git
synced 2025-07-15 17:15:24 +00:00
integrate ast::Location into compilre-core::Location
This commit is contained in:
parent
a22abc5550
commit
9d6ab72d79
12 changed files with 34 additions and 99 deletions
|
@ -5,13 +5,9 @@
|
|||
//! parse a whole program, a single statement, or a single
|
||||
//! expression.
|
||||
|
||||
use std::iter;
|
||||
|
||||
use crate::ast;
|
||||
use crate::error::ParseError;
|
||||
use crate::lexer;
|
||||
pub use crate::mode::Mode;
|
||||
use crate::python;
|
||||
use crate::{ast, error::ParseError, lexer, python};
|
||||
use std::iter;
|
||||
|
||||
/*
|
||||
* Parse python code.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue