Remove the crate language
This commit is contained in:
parent
81a79603c0
commit
be6613e048
82 changed files with 4720 additions and 3886 deletions
28
src/libsyntax/parse/mod.rs
Normal file
28
src/libsyntax/parse/mod.rs
Normal file
|
@ -0,0 +1,28 @@
|
|||
|
||||
#[legacy_exports]
|
||||
mod lexer;
|
||||
#[legacy_exports]
|
||||
mod parser;
|
||||
#[legacy_exports]
|
||||
mod token;
|
||||
#[legacy_exports]
|
||||
mod comments;
|
||||
#[legacy_exports]
|
||||
mod attr;
|
||||
#[legacy_exports]
|
||||
|
||||
/// Common routines shared by parser mods
|
||||
#[legacy_exports]
|
||||
mod common;
|
||||
|
||||
/// Functions dealing with operator precedence
|
||||
#[legacy_exports]
|
||||
mod prec;
|
||||
|
||||
/// Routines the parser uses to classify AST nodes
|
||||
#[legacy_exports]
|
||||
mod classify;
|
||||
|
||||
/// Reporting obsolete syntax
|
||||
#[legacy_exports]
|
||||
mod obsolete;
|
Loading…
Add table
Add a link
Reference in a new issue