aboutsummaryrefslogtreecommitdiff
path: root/crates/libsyntax2/src/yellow/green.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-08-28 12:07:41 +0100
committerAleksey Kladov <[email protected]>2018-08-28 12:07:41 +0100
commit288c9d1ac625c4fa451bdb8ff54830fb9f9795e0 (patch)
tree724b013071f59d4d5fe698edf5892a54a586f12f /crates/libsyntax2/src/yellow/green.rs
parent7e74af32268f9b0783ca94107b0b10d52e4ebe5e (diff)
Simplify API
Diffstat (limited to 'crates/libsyntax2/src/yellow/green.rs')
-rw-r--r--crates/libsyntax2/src/yellow/green.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/crates/libsyntax2/src/yellow/green.rs b/crates/libsyntax2/src/yellow/green.rs
index 59aefb0de..dc3186a24 100644
--- a/crates/libsyntax2/src/yellow/green.rs
+++ b/crates/libsyntax2/src/yellow/green.rs
@@ -43,10 +43,6 @@ impl GreenNode {
43 } 43 }
44 } 44 }
45 45
46 pub fn leaf_text(&self) -> Option<SmolStr> {
47 self.leaf_text_ref().map(Clone::clone)
48 }
49
50 pub fn leaf_text_ref(&self) -> Option<&SmolStr> { 46 pub fn leaf_text_ref(&self) -> Option<&SmolStr> {
51 match self { 47 match self {
52 GreenNode::Leaf { text, .. } => Some(text), 48 GreenNode::Leaf { text, .. } => Some(text),