aboutsummaryrefslogtreecommitdiff
path: root/crates/parser/src/grammar.rs
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2021-05-22 15:20:42 +0100
committerGitHub <[email protected]>2021-05-22 15:20:42 +0100
commita99de65573d59d6398f472b0d42daabe9e8a5410 (patch)
treeffaa695301e2483e8a3ec360f0dcec79281ab2c1 /crates/parser/src/grammar.rs
parentd56e52402eedbd738b5161cd1e5a8c152cb65e21 (diff)
parentdc1577d58d0339b3d77739e33ae5e527ae6f6589 (diff)
Merge #8923
8923: Add even more docs r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/parser/src/grammar.rs')
-rw-r--r--crates/parser/src/grammar.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/parser/src/grammar.rs b/crates/parser/src/grammar.rs
index 9bdf0b5fa..790908aea 100644
--- a/crates/parser/src/grammar.rs
+++ b/crates/parser/src/grammar.rs
@@ -27,6 +27,7 @@
27//! node or an error, rules like `opt_where_clause` may produce nothing. 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 28//! Non-opt rules typically start with `assert!(p.at(FIRST_TOKEN))`, the
29//! caller is responsible for branching on the first token. 29//! caller is responsible for branching on the first token.
30
30mod attributes; 31mod attributes;
31mod expressions; 32mod expressions;
32mod items; 33mod items;