VariableDeclarationList

/**
* A variable declaration list
*/

Inherit from Node

Primary key: id: int

schema VariableDeclarationList extends Node {
  @primary id: int
}

VariableDeclarationList::getEnclosingFunction

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

VariableDeclarationList::getADescendant

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

VariableDeclarationList::getRoot

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

VariableDeclarationList::getAnAncestor

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

VariableDeclarationList::getChild

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

VariableDeclarationList::getChildCount

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

VariableDeclarationList::getAChild

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

VariableDeclarationList::getStartColumnNumber

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

VariableDeclarationList::getIndex

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

VariableDeclarationList::getParentOid

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

VariableDeclarationList::getATrailingComment

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

VariableDeclarationList::getVariableDeclaration

/**
* get the variable declaration with given
*/
pub fn getVariableDeclaration(self: VariableDeclarationList, i: int) -> VariableDeclaration;

VariableDeclarationList::getEndLineNumber

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

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

VariableDeclarationList::getAnAncestorEnclosingFunction

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

VariableDeclarationList::getSymbol

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

VariableDeclarationList::getAVariableDeclaration

/**
* get a variable declaration
*/
pub fn getAVariableDeclaration(self: VariableDeclarationList) -> *VariableDeclaration;

VariableDeclarationList::getALeadingComment

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

VariableDeclarationList::getFile

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

VariableDeclarationList::getAComment

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

VariableDeclarationList::getADecorator

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

VariableDeclarationList::getDecorator

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

VariableDeclarationList::__all__

Data constraint method.

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

VariableDeclarationList::getLocation

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

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

VariableDeclarationList::getVariableDeclarationCount

/**
* get the count of the variable declarations
*/
pub fn getVariableDeclarationCount(self: VariableDeclarationList) -> int;

VariableDeclarationList::getText

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

VariableDeclarationList::getModifier

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

VariableDeclarationList::getStartLineNumber

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

VariableDeclarationList::getAModifier

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

VariableDeclarationList::getKind

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

VariableDeclarationList::getParent

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

VariableDeclarationList::getEndColumnNumber

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

VariableDeclarationList::getLastChild

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

VariableDeclarationList::getRelativePath

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