pub type SyntaxNodePtr = SyntaxNodePtr<RustLanguage>;
Expand description
A “pointer” to a SyntaxNode
, via location in the source code.
Aliased Type§
struct SyntaxNodePtr { /* private fields */ }
Implementations
§impl<L> SyntaxNodePtr<L>where
L: Language,
impl<L> SyntaxNodePtr<L>where
L: Language,
pub fn new(node: &SyntaxNode<L>) -> SyntaxNodePtr<L>
pub fn new(node: &SyntaxNode<L>) -> SyntaxNodePtr<L>
Returns a [SyntaxNodePtr
] for the node.
pub fn to_node(&self, root: &SyntaxNode<L>) -> SyntaxNode<L>
pub fn to_node(&self, root: &SyntaxNode<L>) -> SyntaxNode<L>
Like [Self::try_to_node
] but panics instead of returning None
on
failure.
pub fn try_to_node(&self, root: &SyntaxNode<L>) -> Option<SyntaxNode<L>>
pub fn try_to_node(&self, root: &SyntaxNode<L>) -> Option<SyntaxNode<L>>
“Dereferences” the pointer to get the [SyntaxNode
] it points to.
Returns None
if the node is not found, so make sure that the root
syntax tree is equivalent to (i.e. is build from the same text from) the
tree which was originally used to get this [SyntaxNodePtr
].
Also returns None
if root
is not actually a root (i.e. it has a
parent).
The complexity is linear in the depth of the tree and logarithmic in
tree width. As most trees are shallow, thinking about this as
O(log(N))
in the size of the tree is not too wrong!
pub fn cast<N>(self) -> Option<AstPtr<N>>where
N: AstNode<Language = L>,
pub fn cast<N>(self) -> Option<AstPtr<N>>where
N: AstNode<Language = L>,
Casts this to an [AstPtr
] to the given node type if possible.
pub fn kind(&self) -> <L as Language>::Kind
pub fn kind(&self) -> <L as Language>::Kind
Returns the kind of the syntax node this points to.
pub fn text_range(&self) -> TextRange
pub fn text_range(&self) -> TextRange
Returns the range of the syntax node this points to.