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
- Parameter
self
:CommaListExpression
- Return
int
pub fn getIndex(self: CommaListExpression) -> int;
CommaListExpression::getParentOid
/**
* Gets the parent oid of this node.
*/
- Parameter
self
:CommaListExpression
- Return
int
pub fn getParentOid(self: CommaListExpression) -> int;
CommaListExpression::getRelativePath
/**
* Gets the relative path of this node.
*/
- Parameter
self
:CommaListExpression
- Return
string
pub fn getRelativePath(self: CommaListExpression) -> string;
CommaListExpression::getLastChild
/**
* Gets the last child of this node parent.
*/
- Parameter
self
:CommaListExpression
- Return
Node
pub fn getLastChild(self: CommaListExpression) -> Node;
CommaListExpression::getEndColumnNumber
- Parameter
self
:CommaListExpression
- Return
int
pub fn getEndColumnNumber(self: CommaListExpression) -> int;
CommaListExpression::getKind
/**
* Get the syntax kind of this node
*/
- Parameter
self
:CommaListExpression
- Return
int
pub fn getKind(self: CommaListExpression) -> int;
CommaListExpression::getAModifier
/**
* Gets a modifier.
*/
- Parameter
self
:CommaListExpression
- Return
*Modifier
pub fn getAModifier(self: CommaListExpression) -> *Modifier;
CommaListExpression::getADecorator
/**
* Gets a decorator.
*/
- Parameter
self
:CommaListExpression
- Return
*Decorator
pub fn getADecorator(self: CommaListExpression) -> *Decorator;
CommaListExpression::getAComment
/**
* Gets the comments related to it
*/
- Parameter
self
:CommaListExpression
- Return
*Comment
pub fn getAComment(self: CommaListExpression) -> *Comment;
CommaListExpression::getChildCount
/**
* Gets the number of child nodes.
*/
- Parameter
self
:CommaListExpression
- Return
int
pub fn getChildCount(self: CommaListExpression) -> int;
CommaListExpression::getSymbol
/**
* Gets the symbol associated with this node.
*/
- Parameter
self
:CommaListExpression
- Return
Symbol
pub fn getSymbol(self: CommaListExpression) -> Symbol;
CommaListExpression::getAnAncestorEnclosingFunction
/**
* Gets an ancestor enclosing function of it
*/
- Parameter
self
:CommaListExpression
- Return
*FunctionLikeDeclaration
pub fn getAnAncestorEnclosingFunction(self: CommaListExpression) -> *FunctionLikeDeclaration;
CommaListExpression::getExpressionCount
/**
* Get the count of the child expressions.
*/
- Parameter
self
:CommaListExpression
- Return
int
pub fn getExpressionCount(self: CommaListExpression) -> int;
CommaListExpression::getDecorator
/**
* Gets the `i`th decorator.
*/
- Parameter
self
:CommaListExpression
- Parameter
i
:int
- Return
Decorator
pub fn getDecorator(self: CommaListExpression, i: int) -> Decorator;
CommaListExpression::getChild
/**
* Gets the `i`th child of this node.
*/
- Parameter
self
:CommaListExpression
- Parameter
i
:int
- Return
Node
pub fn getChild(self: CommaListExpression, i: int) -> Node;
CommaListExpression::getAnAncestor
/**
* Gets an ancestor of this node.
*/
- Parameter
self
:CommaListExpression
- Return
*Node
pub fn getAnAncestor(self: CommaListExpression) -> *Node;
CommaListExpression::__all__
Data constraint method.
- Parameter
db
:JavascriptDB
- Return
*CommaListExpression
pub fn __all__(db: JavascriptDB) -> *CommaListExpression;
CommaListExpression::getLocation
/**
* Gets the location of this node.
*/
- Parameter
self
:CommaListExpression
- Return
Location
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.
*/
- Parameter
self
:CommaListExpression
- Parameter
level
:int
- Return
*Node
pub fn getADescendantByLevel(self: CommaListExpression, level: int) -> *Node;
CommaListExpression::getRoot
/**
* Gets the root top-level of this node.
*/
- Parameter
self
:CommaListExpression
- Return
TopLevelDO
pub fn getRoot(self: CommaListExpression) -> TopLevelDO;
CommaListExpression::getADescendant
/**
* Gets a descendant of this node.
*/
- Parameter
self
:CommaListExpression
- Return
*Node
pub fn getADescendant(self: CommaListExpression) -> *Node;
CommaListExpression::getEnclosingFunction
/**
* Gets the enclosing function of it
*/
- Parameter
self
:CommaListExpression
- Return
FunctionLikeDeclaration
pub fn getEnclosingFunction(self: CommaListExpression) -> FunctionLikeDeclaration;
CommaListExpression::getAExpression
/**
* Get a child expression of the CommaListExpression.
*/
- Parameter
self
:CommaListExpression
- Return
*Expression
pub fn getAExpression(self: CommaListExpression) -> *Expression;
CommaListExpression::getParent
/**
* Gets the parent node of this node.
*/
- Parameter
self
:CommaListExpression
- Return
Node
pub fn getParent(self: CommaListExpression) -> Node;
CommaListExpression::getExpression
/**
* Gets the `i`th child expression of CommaListExpression.
*/
- Parameter
self
:CommaListExpression
- Parameter
i
:int
- Return
Expression
pub fn getExpression(self: CommaListExpression, i: int) -> Expression;
CommaListExpression::getAChild
/**
* Gets a child node of this node.
*/
- Parameter
self
:CommaListExpression
- Return
*Node
pub fn getAChild(self: CommaListExpression) -> *Node;
CommaListExpression::getStartColumnNumber
- Parameter
self
:CommaListExpression
- Return
int
pub fn getStartColumnNumber(self: CommaListExpression) -> int;
CommaListExpression::getStartLineNumber
- Parameter
self
:CommaListExpression
- Return
int
pub fn getStartLineNumber(self: CommaListExpression) -> int;
CommaListExpression::getEndLineNumber
- Parameter
self
:CommaListExpression
- Return
int
pub fn getEndLineNumber(self: CommaListExpression) -> int;
CommaListExpression::getATrailingComment
/**
* Gets the trailing comments of it
*/
- Parameter
self
:CommaListExpression
- Return
*Comment
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.
*/
- Parameter
self
:CommaListExpression
- Parameter
level
:int
- Return
Node
pub fn getAnAncestorByLevel(self: CommaListExpression, level: int) -> Node;
CommaListExpression::getALeadingComment
/**
* Gets the leading comments of it
*/
- Parameter
self
:CommaListExpression
- Return
*Comment
pub fn getALeadingComment(self: CommaListExpression) -> *Comment;
CommaListExpression::getFile
/**
* Gets the file of this node.
*/
- Parameter
self
:CommaListExpression
- Return
File
pub fn getFile(self: CommaListExpression) -> File;
CommaListExpression::getModifier
/**
* Gets the `i`th modifier.
*/
- Parameter
self
:CommaListExpression
- Parameter
i
:int
- Return
Modifier
pub fn getModifier(self: CommaListExpression, i: int) -> Modifier;
CommaListExpression::getText
/**
* Gets the text of this node.
*/
- Parameter
self
:CommaListExpression
- Return
string
pub fn getText(self: CommaListExpression) -> string;