CommaExpression

/**
* A comma expression using `,`.
*/

Inherit from BinaryExpression

Primary key: id: int

schema CommaExpression extends BinaryExpression {
  @primary id: int
}

CommaExpression::getFile

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

CommaExpression::getALeadingComment

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

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

CommaExpression::getATrailingComment

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

CommaExpression::getEndLineNumber

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

CommaExpression::getStartLineNumber

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

CommaExpression::getStartColumnNumber

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

CommaExpression::getAChild

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

CommaExpression::getAnOperand

pub fn getAnOperand(self: CommaExpression) -> *Expression;

CommaExpression::getChildCount

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

CommaExpression::getChild

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

CommaExpression::getRight

/**
* Get the right operand of this binary expression. An alias of `getRightOperand`
*/
pub fn getRight(self: CommaExpression) -> Expression;

CommaExpression::getRightOperand

/**
* Get the right operand of this binary expression.
*/
pub fn getRightOperand(self: CommaExpression) -> Expression;

CommaExpression::getDecorator

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

CommaExpression::getOperator

/**
* Get the operator of this binary expression.
*/
pub fn getOperator(self: CommaExpression) -> BinaryOperator;

CommaExpression::getKind

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

CommaExpression::getAModifier

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

CommaExpression::__all__

Data constraint method.

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

CommaExpression::getLocation

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

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

CommaExpression::getEndColumnNumber

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

CommaExpression::getParent

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

CommaExpression::getLastChild

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

CommaExpression::getIndex

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

CommaExpression::getRelativePath

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

CommaExpression::getAnAncestorEnclosingFunction

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

CommaExpression::getSymbol

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

CommaExpression::getRoot

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

CommaExpression::getParentOid

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

CommaExpression::getEnclosingFunction

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

CommaExpression::getADescendant

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

CommaExpression::getADecorator

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

CommaExpression::getAComment

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

CommaExpression::getText

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

CommaExpression::getModifier

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

CommaExpression::getLeftOperand

/**
* Get the left operand of this binary expression.
*/
pub fn getLeftOperand(self: CommaExpression) -> Expression;

CommaExpression::getLeft

/**
* Get the left operand of this binary expression. An alias of `getLeftOperand`.
*/
pub fn getLeft(self: CommaExpression) -> Expression;

CommaExpression::getAnAncestor

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