DataFlowNode
Inherit from Node
Primary key: id: int
schema DataFlowNode extends Node {
@primary id: int
}
DataFlowNode::getEnclosingFunction
/**
* Gets the enclosing function of it
*/
- Parameter
self
:DataFlowNode
- Return
FunctionLikeDeclaration
pub fn getEnclosingFunction(self: DataFlowNode) -> FunctionLikeDeclaration;
DataFlowNode::getADescendant
/**
* Gets a descendant of this node.
*/
- Parameter
self
:DataFlowNode
- Return
*Node
pub fn getADescendant(self: DataFlowNode) -> *Node;
DataFlowNode::getRoot
/**
* Gets the root top-level of this node.
*/
- Parameter
self
:DataFlowNode
- Return
TopLevelDO
pub fn getRoot(self: DataFlowNode) -> TopLevelDO;
DataFlowNode::getAnAncestor
/**
* Gets an ancestor of this node.
*/
- Parameter
self
:DataFlowNode
- Return
*Node
pub fn getAnAncestor(self: DataFlowNode) -> *Node;
DataFlowNode::getChild
/**
* Gets the `i`th child of this node.
*/
- Parameter
self
:DataFlowNode
- Parameter
i
:int
- Return
Node
pub fn getChild(self: DataFlowNode, i: int) -> Node;
DataFlowNode::getChildCount
/**
* Gets the number of child nodes.
*/
- Parameter
self
:DataFlowNode
- Return
int
pub fn getChildCount(self: DataFlowNode) -> int;
DataFlowNode::getAChild
/**
* Gets a child node of this node.
*/
- Parameter
self
:DataFlowNode
- Return
*Node
pub fn getAChild(self: DataFlowNode) -> *Node;
DataFlowNode::getStartColumnNumber
- Parameter
self
:DataFlowNode
- Return
int
pub fn getStartColumnNumber(self: DataFlowNode) -> int;
DataFlowNode::getAnAncestorEnclosingFunction
/**
* Gets an ancestor enclosing function of it
*/
- Parameter
self
:DataFlowNode
- Return
*FunctionLikeDeclaration
pub fn getAnAncestorEnclosingFunction(self: DataFlowNode) -> *FunctionLikeDeclaration;
DataFlowNode::getSymbol
/**
* Gets the symbol associated with this node.
*/
- Parameter
self
:DataFlowNode
- Return
Symbol
pub fn getSymbol(self: DataFlowNode) -> Symbol;
DataFlowNode::getIndex
- Parameter
self
:DataFlowNode
- Return
int
pub fn getIndex(self: DataFlowNode) -> int;
DataFlowNode::getEndLineNumber
- Parameter
self
:DataFlowNode
- Return
int
pub fn getEndLineNumber(self: DataFlowNode) -> int;
DataFlowNode::getATrailingComment
/**
* Gets the trailing comments of it
*/
- Parameter
self
:DataFlowNode
- Return
*Comment
pub fn getATrailingComment(self: DataFlowNode) -> *Comment;
DataFlowNode::getAnAncestorByLevel
/**
* Gets an ancestor of this node by the level of the hierarchy.
*
* @param level: the number of levels to go up in the hierarchy.
*/
- Parameter
self
:DataFlowNode
- Parameter
level
:int
- Return
Node
pub fn getAnAncestorByLevel(self: DataFlowNode, level: int) -> Node;
DataFlowNode::getAPredecessor
- Parameter
self
:DataFlowNode
- Return
*DataFlowNode
pub fn getAPredecessor(self: DataFlowNode) -> *DataFlowNode;
DataFlowNode::getText
/**
* Gets the text of this node.
*/
- Parameter
self
:DataFlowNode
- Return
string
pub fn getText(self: DataFlowNode) -> string;
DataFlowNode::getModifier
/**
* Gets the `i`th modifier.
*/
- Parameter
self
:DataFlowNode
- Parameter
i
:int
- Return
Modifier
pub fn getModifier(self: DataFlowNode, i: int) -> Modifier;
DataFlowNode::getALeadingComment
/**
* Gets the leading comments of it
*/
- Parameter
self
:DataFlowNode
- Return
*Comment
pub fn getALeadingComment(self: DataFlowNode) -> *Comment;
DataFlowNode::getFile
/**
* Gets the file of this node.
*/
- Parameter
self
:DataFlowNode
- Return
File
pub fn getFile(self: DataFlowNode) -> File;
DataFlowNode::getLocation
/**
* Gets the location of this node.
*/
- Parameter
self
:DataFlowNode
- Return
Location
pub fn getLocation(self: DataFlowNode) -> Location;
DataFlowNode::getADescendantByLevel
/**
* Gets a descendant of this node by the level of the hierarchy.
*
* @param level: the number of levels to go up in the hierarchy.
*/
- Parameter
self
:DataFlowNode
- Parameter
level
:int
- Return
*Node
pub fn getADescendantByLevel(self: DataFlowNode, level: int) -> *Node;
DataFlowNode::__all__
Data constraint method.
- Parameter
db
:JavascriptDB
- Return
*DataFlowNode
pub fn __all__(db: JavascriptDB) -> *DataFlowNode;
DataFlowNode::getASuccessor
- Parameter
self
:DataFlowNode
- Return
*DataFlowNode
pub fn getASuccessor(self: DataFlowNode) -> *DataFlowNode;
DataFlowNode::getAModifier
/**
* Gets a modifier.
*/
- Parameter
self
:DataFlowNode
- Return
*Modifier
pub fn getAModifier(self: DataFlowNode) -> *Modifier;
DataFlowNode::getKind
/**
* Get the syntax kind of this node
*/
- Parameter
self
:DataFlowNode
- Return
int
pub fn getKind(self: DataFlowNode) -> int;
DataFlowNode::getAComment
/**
* Gets the comments related to it
*/
- Parameter
self
:DataFlowNode
- Return
*Comment
pub fn getAComment(self: DataFlowNode) -> *Comment;
DataFlowNode::getADecorator
/**
* Gets a decorator.
*/
- Parameter
self
:DataFlowNode
- Return
*Decorator
pub fn getADecorator(self: DataFlowNode) -> *Decorator;
DataFlowNode::getDecorator
/**
* Gets the `i`th decorator.
*/
- Parameter
self
:DataFlowNode
- Parameter
i
:int
- Return
Decorator
pub fn getDecorator(self: DataFlowNode, i: int) -> Decorator;
DataFlowNode::getStartLineNumber
- Parameter
self
:DataFlowNode
- Return
int
pub fn getStartLineNumber(self: DataFlowNode) -> int;
DataFlowNode::getParent
/**
* Gets the parent node of this node.
*/
- Parameter
self
:DataFlowNode
- Return
Node
pub fn getParent(self: DataFlowNode) -> Node;
DataFlowNode::getEndColumnNumber
- Parameter
self
:DataFlowNode
- Return
int
pub fn getEndColumnNumber(self: DataFlowNode) -> int;
DataFlowNode::getLastChild
/**
* Gets the last child of this node parent.
*/
- Parameter
self
:DataFlowNode
- Return
Node
pub fn getLastChild(self: DataFlowNode) -> Node;
DataFlowNode::getRelativePath
/**
* Gets the relative path of this node.
*/
- Parameter
self
:DataFlowNode
- Return
string
pub fn getRelativePath(self: DataFlowNode) -> string;
DataFlowNode::getParentOid
/**
* Gets the parent oid of this node.
*/
- Parameter
self
:DataFlowNode
- Return
int
pub fn getParentOid(self: DataFlowNode) -> int;