ExponentiationOperator

/**
* An exponentiation operator `**`.
*/

Inherit from Token

Primary key: id: int

schema ExponentiationOperator extends Token {
  @primary id: int
}

ExponentiationOperator::getSymbol

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

ExponentiationOperator::getAnAncestorEnclosingFunction

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

ExponentiationOperator::getIndex

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

ExponentiationOperator::getParentOid

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

ExponentiationOperator::getRelativePath

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

ExponentiationOperator::getLastChild

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

ExponentiationOperator::getEndColumnNumber

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

ExponentiationOperator::getParent

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

ExponentiationOperator::getChildCount

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

ExponentiationOperator::getDecorator

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

ExponentiationOperator::getEndLineNumber

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

ExponentiationOperator::getATrailingComment

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

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

ExponentiationOperator::getChild

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

ExponentiationOperator::getRoot

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

ExponentiationOperator::getAChild

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

ExponentiationOperator::getStartColumnNumber

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

ExponentiationOperator::getStartLineNumber

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

ExponentiationOperator::__all__

Data constraint method.

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

ExponentiationOperator::getLocation

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

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

ExponentiationOperator::getKind

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

ExponentiationOperator::getAModifier

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

ExponentiationOperator::getAnAncestor

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

ExponentiationOperator::getEnclosingFunction

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

ExponentiationOperator::getADescendant

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

ExponentiationOperator::getALeadingComment

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

ExponentiationOperator::getFile

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

ExponentiationOperator::getModifier

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

ExponentiationOperator::getText

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

ExponentiationOperator::getAComment

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

ExponentiationOperator::getADecorator

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