CommaListExpression

/**
* A comma list expression. This node will not be
* Will not appear in the AST.
*/

Inherit from Expression

Primary key: id: int

schema CommaListExpression extends Expression {
  @primary id: int
}

CommaListExpression::getIndex

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

CommaListExpression::getParentOid

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

CommaListExpression::getRelativePath

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

CommaListExpression::getLastChild

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

CommaListExpression::getEndColumnNumber

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

CommaListExpression::getKind

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

CommaListExpression::getAModifier

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

CommaListExpression::getADecorator

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

CommaListExpression::getAComment

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

CommaListExpression::getChildCount

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

CommaListExpression::getSymbol

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

CommaListExpression::getAnAncestorEnclosingFunction

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

CommaListExpression::getExpressionCount

/**
* Get the count of the child expressions.
*/
pub fn getExpressionCount(self: CommaListExpression) -> int;

CommaListExpression::getDecorator

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

CommaListExpression::getChild

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

CommaListExpression::getAnAncestor

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

CommaListExpression::__all__

Data constraint method.

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

CommaListExpression::getLocation

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

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

CommaListExpression::getRoot

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

CommaListExpression::getADescendant

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

CommaListExpression::getEnclosingFunction

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

CommaListExpression::getAExpression

/**
* Get a child expression of the CommaListExpression.
*/
pub fn getAExpression(self: CommaListExpression) -> *Expression;

CommaListExpression::getParent

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

CommaListExpression::getExpression

/**
* Gets the `i`th child expression of CommaListExpression.
*/
pub fn getExpression(self: CommaListExpression, i: int) -> Expression;

CommaListExpression::getAChild

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

CommaListExpression::getStartColumnNumber

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

CommaListExpression::getStartLineNumber

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

CommaListExpression::getEndLineNumber

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

CommaListExpression::getATrailingComment

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

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

CommaListExpression::getALeadingComment

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

CommaListExpression::getFile

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

CommaListExpression::getModifier

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

CommaListExpression::getText

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