⬆️ rowan

This commit is contained in:
Aleksey Kladov
2019-01-22 23:37:03 +03:00
parent b9f65b18b8
commit 7b28a15202
3 changed files with 8 additions and 4 deletions

View File

@@ -177,6 +177,10 @@ impl SyntaxNode {
pub fn children(&self) -> SyntaxNodeChildren {
SyntaxNodeChildren(self.0.children())
}
pub fn memory_size_of_subtree(&self) -> usize {
self.0.memory_size_of_subtree()
}
}
impl fmt::Debug for SyntaxNode {