aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/src/yellow/builder.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_syntax/src/yellow/builder.rs')
-rw-r--r--crates/ra_syntax/src/yellow/builder.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/crates/ra_syntax/src/yellow/builder.rs b/crates/ra_syntax/src/yellow/builder.rs
index 37ae6329b..e8b9112d4 100644
--- a/crates/ra_syntax/src/yellow/builder.rs
+++ b/crates/ra_syntax/src/yellow/builder.rs
@@ -12,10 +12,7 @@ pub(crate) struct GreenBuilder {
12 12
13impl GreenBuilder { 13impl GreenBuilder {
14 pub(crate) fn new() -> GreenBuilder { 14 pub(crate) fn new() -> GreenBuilder {
15 GreenBuilder { 15 GreenBuilder { errors: Vec::new(), inner: GreenNodeBuilder::new() }
16 errors: Vec::new(),
17 inner: GreenNodeBuilder::new(),
18 }
19 } 16 }
20} 17}
21 18