docing parser methods

This commit is contained in:
csmoe 2018-12-31 20:53:43 +08:00
parent 582ea0a29a
commit ea7b569e1b
4 changed files with 23 additions and 12 deletions

View file

@ -26,11 +26,11 @@ impl Sink for GreenBuilder {
self.inner.leaf(kind, text);
}
fn start_internal(&mut self, kind: SyntaxKind) {
fn start_branch(&mut self, kind: SyntaxKind) {
self.inner.start_internal(kind)
}
fn finish_internal(&mut self) {
fn finish_branch(&mut self) {
self.inner.finish_internal();
}