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.
4444- The parser [ translates the token stream from the lexer into an Abstract Syntax
4545 Tree (AST)] [ parser ] . It uses a recursive descent (top-down) approach to syntax
4646 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
4848 module parsing entry point is ` rustc_expand::module::parse_external_mod ` . And
4949 the macro parser entry point is [ ` Parser::parse_nonterminal() ` ] [ parse_nonterminal ] .
5050- 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