diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-12-18 19:27:18 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2020-12-18 19:27:18 +0000 |
commit | c073e4f6ba5e4f2754262ea02ad3bb23e78e1f3e (patch) | |
tree | 524b2882b071232a2603f657279e7ac9c459950f /crates/parser/src/grammar.rs | |
parent | 25185c1418022868e2f7ec1599e32a34d63e8314 (diff) | |
parent | aab9cc9cfb64aea659f2f9b588e8a4f392e2c4e1 (diff) |
Merge #6934
6934: Implement `cfg_attr` handling r=jonas-schievink a=jonas-schievink
Part of https://github.com/rust-analyzer/rust-analyzer/issues/5548
Co-authored-by: Jonas Schievink <[email protected]>
Diffstat (limited to 'crates/parser/src/grammar.rs')
-rw-r--r-- | crates/parser/src/grammar.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/crates/parser/src/grammar.rs b/crates/parser/src/grammar.rs index 23039eba4..1a078f6b4 100644 --- a/crates/parser/src/grammar.rs +++ b/crates/parser/src/grammar.rs | |||
@@ -133,6 +133,10 @@ pub(crate) mod fragments { | |||
133 | 133 | ||
134 | m.complete(p, MACRO_STMTS); | 134 | m.complete(p, MACRO_STMTS); |
135 | } | 135 | } |
136 | |||
137 | pub(crate) fn attr(p: &mut Parser) { | ||
138 | attributes::outer_attrs(p) | ||
139 | } | ||
136 | } | 140 | } |
137 | 141 | ||
138 | pub(crate) fn reparser( | 142 | pub(crate) fn reparser( |