File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ The bulk of the parser lives in the [libsyntax] crate.
9
9
10
10
Like most parsers, the parsing process is composed of two main steps,
11
11
12
- - lexical analysis - turn a stream of characters into a stream of token trees
13
- - parsing - turn the token trees into an AST
12
+ - lexical analysis – turn a stream of characters into a stream of token trees
13
+ - parsing – turn the token trees into an AST
14
14
15
15
The ` syntax ` crate contains several main players,
16
16
@@ -39,4 +39,4 @@ all the information needed while parsing, as well as the `CodeMap` itself.
39
39
[ parser module ] : https://github.com/rust-lang/rust/tree/master/src/libsyntax/parse
40
40
[ `Parser` ] : https://github.com/rust-lang/rust/blob/master/src/libsyntax/parse/parser.rs
41
41
[ `StringReader` ] : https://github.com/rust-lang/rust/blob/master/src/libsyntax/parse/lexer/mod.rs
42
- [ visit module ] : https://github.com/rust-lang/rust/blob/master/src/libsyntax/visit.rs
42
+ [ visit module ] : https://github.com/rust-lang/rust/blob/master/src/libsyntax/visit.rs
You can’t perform that action at this time.
0 commit comments