File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ we'll talk about that later.
44
44
- The parser [ translates the token stream from the lexer into an Abstract Syntax
45
45
Tree (AST)] [ parser ] . It uses a recursive descent (top-down) approach to syntax
46
46
analysis. The crate entry points for the parser are the ` Parser::parse_crate_mod() ` and
47
- ` Parser::parse_mod() ` methods found in ` rustc_parse::parser::item ` . The external
47
+ ` Parser::parse_mod() ` methods found in ` rustc_parse::parser::Parser ` . The external
48
48
module parsing entry point is ` rustc_expand::module::parse_external_mod ` . And
49
49
the macro parser entry point is [ ` Parser::parse_nonterminal() ` ] [ parse_nonterminal ] .
50
50
- Parsing is performed with a set of ` Parser ` utility methods including ` fn bump ` ,
You can’t perform that action at this time.
0 commit comments