aboutsummaryrefslogtreecommitdiff
path: root/src/parser_impl
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-08-07 16:28:30 +0100
committerAleksey Kladov <[email protected]>2018-08-07 16:36:33 +0100
commit2fb854ccdae6f1f12b60441e5c3b283bdc81fb0a (patch)
treeed4f31d31473a2faf8e014907960f855b96cca22 /src/parser_impl
parenta04473e2bb95483e84404c57426ee9ed21fa5d6b (diff)
:tada: extend selection
Diffstat (limited to 'src/parser_impl')
-rw-r--r--src/parser_impl/event.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/parser_impl/event.rs b/src/parser_impl/event.rs
index e64087480..4c97b1bea 100644
--- a/src/parser_impl/event.rs
+++ b/src/parser_impl/event.rs
@@ -13,6 +13,7 @@ use {
13 SyntaxKind::{self, TOMBSTONE}, 13 SyntaxKind::{self, TOMBSTONE},
14}; 14};
15 15
16
16/// `Parser` produces a flat list of `Event`s. 17/// `Parser` produces a flat list of `Event`s.
17/// They are converted to a tree-structure in 18/// They are converted to a tree-structure in
18/// a separate pass, via `TreeBuilder`. 19/// a separate pass, via `TreeBuilder`.