ArrayBindingElement

/** * An array binding element. */ 

Inherit from Node

Primary key: id: int

schema ArrayBindingElement extends Node { @primary id: int } 

ArrayBindingElement::getEnclosingFunction

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

ArrayBindingElement::getADescendant

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

ArrayBindingElement::getRoot

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

ArrayBindingElement::getAnAncestor

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

ArrayBindingElement::getChild

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

ArrayBindingElement::getChildCount

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

ArrayBindingElement::getAChild

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

ArrayBindingElement::getStartColumnNumber

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

ArrayBindingElement::getStartLineNumber

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

ArrayBindingElement::getEndLineNumber

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

ArrayBindingElement::getATrailingComment

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

ArrayBindingElement::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: ArrayBindingElement, level: int) -> Node; 

ArrayBindingElement::getALeadingComment

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

ArrayBindingElement::getFile

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

ArrayBindingElement::__all__

Data constraint method.

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

ArrayBindingElement::getLocation

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

ArrayBindingElement::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: ArrayBindingElement, level: int) -> *Node; 

ArrayBindingElement::getModifier

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

ArrayBindingElement::getText

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

ArrayBindingElement::getDecorator

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

ArrayBindingElement::getAComment

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

ArrayBindingElement::getADecorator

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

ArrayBindingElement::getAModifier

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

ArrayBindingElement::getKind

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

ArrayBindingElement::getParent

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

ArrayBindingElement::getEndColumnNumber

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

ArrayBindingElement::getLastChild

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

ArrayBindingElement::getRelativePath

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

ArrayBindingElement::getParentOid

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

ArrayBindingElement::getIndex

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

ArrayBindingElement::getAnAncestorEnclosingFunction

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

ArrayBindingElement::getSymbol

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