Add debug statement
This commit is contained in:
parent
0cbf4e8385
commit
3d143cc64c
@ -22,6 +22,8 @@ impl Identifier {
|
||||
|
||||
impl AbstractTree for Identifier {
|
||||
fn from_syntax_node(source: &str, node: Node) -> Result<Self> {
|
||||
debug_assert_eq!("identifier", node.kind());
|
||||
|
||||
let identifier = &source[node.byte_range()];
|
||||
|
||||
Ok(Identifier(identifier.to_string()))
|
||||
|
Loading…
Reference in New Issue
Block a user