]> git.lizzy.rs Git - rust.git/blob - crates/parser/src/grammar.rs
Merge #6896
[rust.git] / crates / parser / src / grammar.rs
1 //! This is the actual "grammar" of the Rust language.
2 //!
3 //! Each function in this module and its children corresponds
4 //! to a production of the formal grammar. Submodules roughly
5 //! correspond to different *areas* of the grammar. By convention,
6 //! each submodule starts with `use super::*` import and exports
7 //! "public" productions via `pub(super)`.
8 //!
9 //! See docs for `Parser` to learn about API, available to the grammar,
10 //! and see docs for `Event` to learn how this actually manages to
11 //! produce parse trees.
12 //!
13 //! Code in this module also contains inline tests, which start with
14 //! `// test name-of-the-test` comment and look like this:
15 //!
16 //! ```
17 //! // test function_with_zero_parameters
18 //! // fn foo() {}
19 //! ```
20 //!
21 //! After adding a new inline-test, run `cargo xtask codegen` to
22 //! extract it as a standalone text-fixture into
23 //! `crates/syntax/test_data/parser/`, and run `cargo test` once to
24 //! create the "gold" value.
25 //!
26 //! Coding convention: rules like `where_clause` always produce either a
27 //! node or an error, rules like `opt_where_clause` may produce nothing.
28 //! Non-opt rules typically start with `assert!(p.at(FIRST_TOKEN))`, the
29 //! caller is responsible for branching on the first token.
30 mod attributes;
31 mod expressions;
32 mod items;
33 mod params;
34 mod paths;
35 mod patterns;
36 mod type_args;
37 mod type_params;
38 mod types;
39
40 use crate::{
41     parser::{CompletedMarker, Marker, Parser},
42     SyntaxKind::{self, *},
43     TokenSet,
44 };
45
46 pub(crate) fn root(p: &mut Parser) {
47     let m = p.start();
48     p.eat(SHEBANG);
49     items::mod_contents(p, false);
50     m.complete(p, SOURCE_FILE);
51 }
52
53 /// Various pieces of syntax that can be parsed by macros by example
54 pub(crate) mod fragments {
55     use super::*;
56
57     pub(crate) use super::{
58         expressions::block_expr, paths::type_path as path, patterns::pattern, types::type_,
59     };
60
61     pub(crate) fn expr(p: &mut Parser) {
62         let _ = expressions::expr(p);
63     }
64
65     pub(crate) fn stmt(p: &mut Parser) {
66         expressions::stmt(p, expressions::StmtWithSemi::No)
67     }
68
69     pub(crate) fn opt_visibility(p: &mut Parser) {
70         let _ = super::opt_visibility(p);
71     }
72
73     // Parse a meta item , which excluded [], e.g : #[ MetaItem ]
74     pub(crate) fn meta_item(p: &mut Parser) {
75         fn is_delimiter(p: &mut Parser) -> bool {
76             matches!(p.current(), T!['{'] | T!['('] | T!['['])
77         }
78
79         if is_delimiter(p) {
80             items::token_tree(p);
81             return;
82         }
83
84         let m = p.start();
85         while !p.at(EOF) {
86             if is_delimiter(p) {
87                 items::token_tree(p);
88                 break;
89             } else {
90                 // https://doc.rust-lang.org/reference/attributes.html
91                 // https://doc.rust-lang.org/reference/paths.html#simple-paths
92                 // The start of an meta must be a simple path
93                 match p.current() {
94                     IDENT | T![::] | T![super] | T![self] | T![crate] => p.bump_any(),
95                     T![=] => {
96                         p.bump_any();
97                         match p.current() {
98                             c if c.is_literal() => p.bump_any(),
99                             T![true] | T![false] => p.bump_any(),
100                             _ => {}
101                         }
102                         break;
103                     }
104                     _ => break,
105                 }
106             }
107         }
108
109         m.complete(p, TOKEN_TREE);
110     }
111
112     pub(crate) fn item(p: &mut Parser) {
113         items::item_or_macro(p, true)
114     }
115
116     pub(crate) fn macro_items(p: &mut Parser) {
117         let m = p.start();
118         items::mod_contents(p, false);
119         m.complete(p, MACRO_ITEMS);
120     }
121
122     pub(crate) fn macro_stmts(p: &mut Parser) {
123         let m = p.start();
124
125         while !p.at(EOF) {
126             if p.at(T![;]) {
127                 p.bump(T![;]);
128                 continue;
129             }
130
131             expressions::stmt(p, expressions::StmtWithSemi::Optional);
132         }
133
134         m.complete(p, MACRO_STMTS);
135     }
136 }
137
138 pub(crate) fn reparser(
139     node: SyntaxKind,
140     first_child: Option<SyntaxKind>,
141     parent: Option<SyntaxKind>,
142 ) -> Option<fn(&mut Parser)> {
143     let res = match node {
144         BLOCK_EXPR => expressions::block_expr,
145         RECORD_FIELD_LIST => items::record_field_list,
146         RECORD_EXPR_FIELD_LIST => items::record_expr_field_list,
147         VARIANT_LIST => items::variant_list,
148         MATCH_ARM_LIST => items::match_arm_list,
149         USE_TREE_LIST => items::use_tree_list,
150         EXTERN_ITEM_LIST => items::extern_item_list,
151         TOKEN_TREE if first_child? == T!['{'] => items::token_tree,
152         ASSOC_ITEM_LIST => match parent? {
153             IMPL => items::assoc_item_list,
154             TRAIT => items::assoc_item_list,
155             _ => return None,
156         },
157         ITEM_LIST => items::item_list,
158         _ => return None,
159     };
160     Some(res)
161 }
162
163 #[derive(Clone, Copy, PartialEq, Eq)]
164 enum BlockLike {
165     Block,
166     NotBlock,
167 }
168
169 impl BlockLike {
170     fn is_block(self) -> bool {
171         self == BlockLike::Block
172     }
173 }
174
175 fn opt_visibility(p: &mut Parser) -> bool {
176     match p.current() {
177         T![pub] => {
178             let m = p.start();
179             p.bump(T![pub]);
180             if p.at(T!['(']) {
181                 match p.nth(1) {
182                     // test crate_visibility
183                     // pub(crate) struct S;
184                     // pub(self) struct S;
185                     // pub(self) struct S;
186                     // pub(self) struct S;
187
188                     // test pub_parens_typepath
189                     // struct B(pub (super::A));
190                     // struct B(pub (crate::A,));
191                     T![crate] | T![self] | T![super] if p.nth(2) != T![:] => {
192                         p.bump_any();
193                         p.bump_any();
194                         p.expect(T![')']);
195                     }
196                     T![in] => {
197                         p.bump_any();
198                         p.bump_any();
199                         paths::use_path(p);
200                         p.expect(T![')']);
201                     }
202                     _ => (),
203                 }
204             }
205             m.complete(p, VISIBILITY);
206         }
207         // test crate_keyword_vis
208         // crate fn main() { }
209         // struct S { crate field: u32 }
210         // struct T(crate u32);
211         //
212         // test crate_keyword_path
213         // fn foo() { crate::foo(); }
214         T![crate] if !p.nth_at(1, T![::]) => {
215             let m = p.start();
216             p.bump(T![crate]);
217             m.complete(p, VISIBILITY);
218         }
219         _ => return false,
220     }
221     true
222 }
223
224 fn opt_rename(p: &mut Parser) {
225     if p.at(T![as]) {
226         let m = p.start();
227         p.bump(T![as]);
228         if !p.eat(T![_]) {
229             name(p);
230         }
231         m.complete(p, RENAME);
232     }
233 }
234
235 fn abi(p: &mut Parser) {
236     assert!(p.at(T![extern]));
237     let abi = p.start();
238     p.bump(T![extern]);
239     p.eat(STRING);
240     abi.complete(p, ABI);
241 }
242
243 fn opt_ret_type(p: &mut Parser) -> bool {
244     if p.at(T![->]) {
245         let m = p.start();
246         p.bump(T![->]);
247         types::type_no_bounds(p);
248         m.complete(p, RET_TYPE);
249         true
250     } else {
251         false
252     }
253 }
254
255 fn name_r(p: &mut Parser, recovery: TokenSet) {
256     if p.at(IDENT) {
257         let m = p.start();
258         p.bump(IDENT);
259         m.complete(p, NAME);
260     } else {
261         p.err_recover("expected a name", recovery);
262     }
263 }
264
265 fn name(p: &mut Parser) {
266     name_r(p, TokenSet::EMPTY)
267 }
268
269 fn name_ref(p: &mut Parser) {
270     if p.at(IDENT) {
271         let m = p.start();
272         p.bump(IDENT);
273         m.complete(p, NAME_REF);
274     } else {
275         p.err_and_bump("expected identifier");
276     }
277 }
278
279 fn name_ref_or_index(p: &mut Parser) {
280     assert!(p.at(IDENT) || p.at(INT_NUMBER));
281     let m = p.start();
282     p.bump_any();
283     m.complete(p, NAME_REF);
284 }
285
286 fn lifetime(p: &mut Parser) {
287     assert!(p.at(LIFETIME_IDENT));
288     let m = p.start();
289     p.bump(LIFETIME_IDENT);
290     m.complete(p, LIFETIME);
291 }
292
293 fn error_block(p: &mut Parser, message: &str) {
294     assert!(p.at(T!['{']));
295     let m = p.start();
296     p.error(message);
297     p.bump(T!['{']);
298     expressions::expr_block_contents(p);
299     p.eat(T!['}']);
300     m.complete(p, ERROR);
301 }