BindingName

/** * A binding name. */ 

Inherit from Node

Primary key: id: int

schema BindingName extends Node { @primary id: int } 

BindingName::getRoot

/** * Gets the root top-level of this node. */ 
pub fn getRoot(self: BindingName) -> TopLevelDO; 

BindingName::getAnAncestor

/** * Gets an ancestor of this node. */ 
pub fn getAnAncestor(self: BindingName) -> *Node; 

BindingName::getChild

/** * Gets the `i`th child of this node. */ 
pub fn getChild(self: BindingName, i: int) -> Node; 

BindingName::getChildCount

/** * Gets the number of child nodes. */ 
pub fn getChildCount(self: BindingName) -> int; 

BindingName::getAChild

/** * Gets a child node of this node. */ 
pub fn getAChild(self: BindingName) -> *Node; 

BindingName::getStartColumnNumber

pub fn getStartColumnNumber(self: BindingName) -> int; 

BindingName::getAnAncestorEnclosingFunction

/** * Gets an ancestor enclosing function of it */ 
pub fn getAnAncestorEnclosingFunction(self: BindingName) -> *FunctionLikeDeclaration; 

BindingName::getSymbol

/** * Gets the symbol associated with this node. */ 
pub fn getSymbol(self: BindingName) -> Symbol; 

BindingName::getEndLineNumber

pub fn getEndLineNumber(self: BindingName) -> int; 

BindingName::getATrailingComment

/** * Gets the trailing comments of it */ 
pub fn getATrailingComment(self: BindingName) -> *Comment; 

BindingName::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. */ 
pub fn getAnAncestorByLevel(self: BindingName, level: int) -> Node; 

BindingName::getALeadingComment

/** * Gets the leading comments of it */ 
pub fn getALeadingComment(self: BindingName) -> *Comment; 

BindingName::getFile

/** * Gets the file of this node. */ 
pub fn getFile(self: BindingName) -> File; 

BindingName::__all__

Data constraint method.

pub fn __all__(db: JavascriptDB) -> *BindingName; 

BindingName::getLocation

/** * Gets the location of this node. */ 
pub fn getLocation(self: BindingName) -> Location; 

BindingName::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. */ 
pub fn getADescendantByLevel(self: BindingName, level: int) -> *Node; 

BindingName::getAComment

/** * Gets the comments related to it */ 
pub fn getAComment(self: BindingName) -> *Comment; 

BindingName::getADecorator

/** * Gets a decorator. */ 
pub fn getADecorator(self: BindingName) -> *Decorator; 

BindingName::getDecorator

/** * Gets the `i`th decorator. */ 
pub fn getDecorator(self: BindingName, i: int) -> Decorator; 

BindingName::getEnclosingFunction

/** * Gets the enclosing function of it */ 
pub fn getEnclosingFunction(self: BindingName) -> FunctionLikeDeclaration; 

BindingName::getADescendant

/** * Gets a descendant of this node. */ 
pub fn getADescendant(self: BindingName) -> *Node; 

BindingName::getName

pub fn getName(self: BindingName) -> string; 

BindingName::getRelativePath

/** * Gets the relative path of this node. */ 
pub fn getRelativePath(self: BindingName) -> string; 

BindingName::getModifier

/** * Gets the `i`th modifier. */ 
pub fn getModifier(self: BindingName, i: int) -> Modifier; 

BindingName::getText

/** * Gets the text of this node. */ 
pub fn getText(self: BindingName) -> string; 

BindingName::getStartLineNumber

pub fn getStartLineNumber(self: BindingName) -> int; 

BindingName::getAModifier

/** * Gets a modifier. */ 
pub fn getAModifier(self: BindingName) -> *Modifier; 

BindingName::getKind

/** * Get the syntax kind of this node */ 
pub fn getKind(self: BindingName) -> int; 

BindingName::getParent

/** * Gets the parent node of this node. */ 
pub fn getParent(self: BindingName) -> Node; 

BindingName::getEndColumnNumber

pub fn getEndColumnNumber(self: BindingName) -> int; 

BindingName::getLastChild

/** * Gets the last child of this node parent. */ 
pub fn getLastChild(self: BindingName) -> Node; 

BindingName::getParentOid

/** * Gets the parent oid of this node. */ 
pub fn getParentOid(self: BindingName) -> int; 

BindingName::getIndex

pub fn getIndex(self: BindingName) -> int;