MultiplicationExpression

/**
* A multiplication expression using `*`.
*/

Inherit from MultiplicativeExpression

Primary key: id: int

schema MultiplicationExpression extends MultiplicativeExpression {
  @primary id: int
}

MultiplicationExpression::getAnAncestor

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

MultiplicationExpression::getLeft

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

MultiplicationExpression::getLeftOperand

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

MultiplicationExpression::getModifier

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

MultiplicationExpression::getText

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

MultiplicationExpression::getAComment

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

MultiplicationExpression::getADecorator

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

MultiplicationExpression::getADescendant

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

MultiplicationExpression::getEnclosingFunction

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

MultiplicationExpression::getParentOid

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

MultiplicationExpression::getRoot

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

MultiplicationExpression::getSymbol

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

MultiplicationExpression::getAnAncestorEnclosingFunction

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

MultiplicationExpression::getRelativePath

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

MultiplicationExpression::getIndex

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

MultiplicationExpression::getChildCount

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

MultiplicationExpression::getStartLineNumber

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

MultiplicationExpression::getAnOperand

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

MultiplicationExpression::getAChild

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

MultiplicationExpression::getStartColumnNumber

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

MultiplicationExpression::getEndLineNumber

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

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

MultiplicationExpression::getATrailingComment

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

MultiplicationExpression::__all__

Data constraint method.

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

MultiplicationExpression::getLocation

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

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

MultiplicationExpression::getALeadingComment

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

MultiplicationExpression::getFile

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

MultiplicationExpression::getDecorator

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

MultiplicationExpression::getRightOperand

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

MultiplicationExpression::getChild

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

MultiplicationExpression::getRight

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

MultiplicationExpression::getOperator

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

MultiplicationExpression::getAModifier

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

MultiplicationExpression::getKind

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

MultiplicationExpression::getEndColumnNumber

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

MultiplicationExpression::getParent

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

MultiplicationExpression::getLastChild

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