valkyrie-ast 0.0.3

Abstract Syntax Tree of valkyrie language
Documentation
1
2
3
4
5
6
7
use super::*;

impl PartialEq for NamespaceDeclareNode {
    fn eq(&self, other: &Self) -> bool {
        self.kind.eq(&other.kind) && self.path.eq(&other.path)
    }
}