MultiplicativeExpression

/**
* A multiplicative expression using `*`, `/` or `%`.
*/

Inherit from BinaryExpression

Primary key: id: int

schema MultiplicativeExpression extends BinaryExpression {
  @primary id: int
}

MultiplicativeExpression::getFile

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

MultiplicativeExpression::getALeadingComment

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

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

MultiplicativeExpression::getATrailingComment

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

MultiplicativeExpression::getEndLineNumber

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

MultiplicativeExpression::getStartLineNumber

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

MultiplicativeExpression::getStartColumnNumber

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

MultiplicativeExpression::getAChild

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

MultiplicativeExpression::getAnOperand

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

MultiplicativeExpression::getChildCount

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

MultiplicativeExpression::getChild

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

MultiplicativeExpression::getRight

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

MultiplicativeExpression::getRightOperand

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

MultiplicativeExpression::getDecorator

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

MultiplicativeExpression::getOperator

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

MultiplicativeExpression::getKind

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

MultiplicativeExpression::getAModifier

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

MultiplicativeExpression::__all__

Data constraint method.

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

MultiplicativeExpression::getLocation

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

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

MultiplicativeExpression::getEndColumnNumber

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

MultiplicativeExpression::getParent

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

MultiplicativeExpression::getLastChild

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

MultiplicativeExpression::getIndex

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

MultiplicativeExpression::getRelativePath

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

MultiplicativeExpression::getAnAncestorEnclosingFunction

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

MultiplicativeExpression::getSymbol

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

MultiplicativeExpression::getRoot

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

MultiplicativeExpression::getParentOid

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

MultiplicativeExpression::getEnclosingFunction

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

MultiplicativeExpression::getADescendant

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

MultiplicativeExpression::getADecorator

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

MultiplicativeExpression::getAComment

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

MultiplicativeExpression::getText

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

MultiplicativeExpression::getModifier

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

MultiplicativeExpression::getLeftOperand

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

MultiplicativeExpression::getLeft

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

MultiplicativeExpression::getAnAncestor

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