ExponentiationExpression
/**
* A exponentiation expression using `**`.
*/
Inherit from BinaryExpression
Primary key: id: int
schema ExponentiationExpression extends BinaryExpression {
@primary id: int
}
ExponentiationExpression::getFile
/**
* Gets the file of this node.
*/
- Parameter
self
:ExponentiationExpression
- Return
File
pub fn getFile(self: ExponentiationExpression) -> File;
ExponentiationExpression::getALeadingComment
/**
* Gets the leading comments of it
*/
- Parameter
self
:ExponentiationExpression
- Return
*Comment
pub fn getALeadingComment(self: ExponentiationExpression) -> *Comment;
ExponentiationExpression::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
:ExponentiationExpression
- Parameter
level
:int
- Return
Node
pub fn getAnAncestorByLevel(self: ExponentiationExpression, level: int) -> Node;
ExponentiationExpression::getATrailingComment
/**
* Gets the trailing comments of it
*/
- Parameter
self
:ExponentiationExpression
- Return
*Comment
pub fn getATrailingComment(self: ExponentiationExpression) -> *Comment;
ExponentiationExpression::getEndLineNumber
- Parameter
self
:ExponentiationExpression
- Return
int
pub fn getEndLineNumber(self: ExponentiationExpression) -> int;
ExponentiationExpression::getStartLineNumber
- Parameter
self
:ExponentiationExpression
- Return
int
pub fn getStartLineNumber(self: ExponentiationExpression) -> int;
ExponentiationExpression::getStartColumnNumber
- Parameter
self
:ExponentiationExpression
- Return
int
pub fn getStartColumnNumber(self: ExponentiationExpression) -> int;
ExponentiationExpression::getAChild
/**
* Gets a child node of this node.
*/
- Parameter
self
:ExponentiationExpression
- Return
*Node
pub fn getAChild(self: ExponentiationExpression) -> *Node;
ExponentiationExpression::getAnOperand
- Parameter
self
:ExponentiationExpression
- Return
*Expression
pub fn getAnOperand(self: ExponentiationExpression) -> *Expression;
ExponentiationExpression::getChildCount
/**
* Gets the number of child nodes.
*/
- Parameter
self
:ExponentiationExpression
- Return
int
pub fn getChildCount(self: ExponentiationExpression) -> int;
ExponentiationExpression::getChild
/**
* Gets the `i`th child of this node.
*/
- Parameter
self
:ExponentiationExpression
- Parameter
i
:int
- Return
Node
pub fn getChild(self: ExponentiationExpression, i: int) -> Node;
ExponentiationExpression::getRight
/**
* Get the right operand of this binary expression. An alias of `getRightOperand`
*/
- Parameter
self
:ExponentiationExpression
- Return
Expression
pub fn getRight(self: ExponentiationExpression) -> Expression;
ExponentiationExpression::getRightOperand
/**
* Get the right operand of this binary expression.
*/
- Parameter
self
:ExponentiationExpression
- Return
Expression
pub fn getRightOperand(self: ExponentiationExpression) -> Expression;
ExponentiationExpression::getDecorator
/**
* Gets the `i`th decorator.
*/
- Parameter
self
:ExponentiationExpression
- Parameter
i
:int
- Return
Decorator
pub fn getDecorator(self: ExponentiationExpression, i: int) -> Decorator;
ExponentiationExpression::getOperator
/**
* Get the operator of this binary expression.
*/
- Parameter
self
:ExponentiationExpression
- Return
BinaryOperator
pub fn getOperator(self: ExponentiationExpression) -> BinaryOperator;
ExponentiationExpression::getKind
/**
* Get the syntax kind of this node
*/
- Parameter
self
:ExponentiationExpression
- Return
int
pub fn getKind(self: ExponentiationExpression) -> int;
ExponentiationExpression::getAModifier
/**
* Gets a modifier.
*/
- Parameter
self
:ExponentiationExpression
- Return
*Modifier
pub fn getAModifier(self: ExponentiationExpression) -> *Modifier;
ExponentiationExpression::__all__
Data constraint method.
- Parameter
db
:JavascriptDB
- Return
*ExponentiationExpression
pub fn __all__(db: JavascriptDB) -> *ExponentiationExpression;
ExponentiationExpression::getLocation
/**
* Gets the location of this node.
*/
- Parameter
self
:ExponentiationExpression
- Return
Location
pub fn getLocation(self: ExponentiationExpression) -> Location;
ExponentiationExpression::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
:ExponentiationExpression
- Parameter
level
:int
- Return
*Node
pub fn getADescendantByLevel(self: ExponentiationExpression, level: int) -> *Node;
ExponentiationExpression::getEndColumnNumber
- Parameter
self
:ExponentiationExpression
- Return
int
pub fn getEndColumnNumber(self: ExponentiationExpression) -> int;
ExponentiationExpression::getParent
/**
* Gets the parent node of this node.
*/
- Parameter
self
:ExponentiationExpression
- Return
Node
pub fn getParent(self: ExponentiationExpression) -> Node;
ExponentiationExpression::getLastChild
/**
* Gets the last child of this node parent.
*/
- Parameter
self
:ExponentiationExpression
- Return
Node
pub fn getLastChild(self: ExponentiationExpression) -> Node;
ExponentiationExpression::getIndex
- Parameter
self
:ExponentiationExpression
- Return
int
pub fn getIndex(self: ExponentiationExpression) -> int;
ExponentiationExpression::getRelativePath
/**
* Gets the relative path of this node.
*/
- Parameter
self
:ExponentiationExpression
- Return
string
pub fn getRelativePath(self: ExponentiationExpression) -> string;
ExponentiationExpression::getAnAncestorEnclosingFunction
/**
* Gets an ancestor enclosing function of it
*/
- Parameter
self
:ExponentiationExpression
- Return
*FunctionLikeDeclaration
pub fn getAnAncestorEnclosingFunction(self: ExponentiationExpression) -> *FunctionLikeDeclaration;
ExponentiationExpression::getSymbol
/**
* Gets the symbol associated with this node.
*/
- Parameter
self
:ExponentiationExpression
- Return
Symbol
pub fn getSymbol(self: ExponentiationExpression) -> Symbol;
ExponentiationExpression::getRoot
/**
* Gets the root top-level of this node.
*/
- Parameter
self
:ExponentiationExpression
- Return
TopLevelDO
pub fn getRoot(self: ExponentiationExpression) -> TopLevelDO;
ExponentiationExpression::getParentOid
/**
* Gets the parent oid of this node.
*/
- Parameter
self
:ExponentiationExpression
- Return
int
pub fn getParentOid(self: ExponentiationExpression) -> int;
ExponentiationExpression::getEnclosingFunction
/**
* Gets the enclosing function of it
*/
- Parameter
self
:ExponentiationExpression
- Return
FunctionLikeDeclaration
pub fn getEnclosingFunction(self: ExponentiationExpression) -> FunctionLikeDeclaration;
ExponentiationExpression::getADescendant
/**
* Gets a descendant of this node.
*/
- Parameter
self
:ExponentiationExpression
- Return
*Node
pub fn getADescendant(self: ExponentiationExpression) -> *Node;
ExponentiationExpression::getADecorator
/**
* Gets a decorator.
*/
- Parameter
self
:ExponentiationExpression
- Return
*Decorator
pub fn getADecorator(self: ExponentiationExpression) -> *Decorator;
ExponentiationExpression::getAComment
/**
* Gets the comments related to it
*/
- Parameter
self
:ExponentiationExpression
- Return
*Comment
pub fn getAComment(self: ExponentiationExpression) -> *Comment;
ExponentiationExpression::getText
/**
* Gets the text of this node.
*/
- Parameter
self
:ExponentiationExpression
- Return
string
pub fn getText(self: ExponentiationExpression) -> string;
ExponentiationExpression::getModifier
/**
* Gets the `i`th modifier.
*/
- Parameter
self
:ExponentiationExpression
- Parameter
i
:int
- Return
Modifier
pub fn getModifier(self: ExponentiationExpression, i: int) -> Modifier;
ExponentiationExpression::getLeftOperand
/**
* Get the left operand of this binary expression.
*/
- Parameter
self
:ExponentiationExpression
- Return
Expression
pub fn getLeftOperand(self: ExponentiationExpression) -> Expression;
ExponentiationExpression::getLeft
/**
* Get the left operand of this binary expression. An alias of `getLeftOperand`.
*/
- Parameter
self
:ExponentiationExpression
- Return
Expression
pub fn getLeft(self: ExponentiationExpression) -> Expression;
ExponentiationExpression::getAnAncestor
/**
* Gets an ancestor of this node.
*/
- Parameter
self
:ExponentiationExpression
- Return
*Node
pub fn getAnAncestor(self: ExponentiationExpression) -> *Node;