File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -50,10 +50,10 @@ preserves full fidelity information for both IDEs and procedural macros
5050The * parser* [ translates the token stream from the ` lexer ` into an Abstract Syntax
5151Tree (AST)] [ parser ] . It uses a recursive descent (top-down) approach to syntax
5252analysis. The crate entry points for the ` parser ` are the
53- [ ` Parser::parse_crate_mod() ` ] [ parse_crate_mod ] and [ ` Parser::parse_mod() ` ] [ parse_mod ]
53+ [ ` Parser::parse_crate_mod ` ] [ parse_crate_mod ] and [ ` Parser::parse_mod ` ] [ parse_mod ]
5454methods found in [ ` rustc_parse::parser::Parser ` ] . The external module parsing
5555entry point is [ ` rustc_expand::module::parse_external_mod ` ] [ parse_external_mod ] .
56- And the macro-` parser ` entry point is [ ` Parser::parse_nonterminal() ` ] [ parse_nonterminal ] .
56+ And the macro-` parser ` entry point is [ ` Parser::parse_nonterminal ` ] [ parse_nonterminal ] .
5757
5858Parsing is performed with a set of [ ` parser ` ] utility methods including [ ` bump ` ] ,
5959[ ` check ` ] , [ ` eat ` ] , [ ` expect ` ] , [ ` look_ahead ` ] .
You can’t perform that action at this time.
0 commit comments