MultiplicativeOperator

/** * A multiplicative operator `*`, `/` or `%`. */ 

Inherit from Token

Primary key: id: int

schema MultiplicativeOperator extends Token { @primary id: int } 

MultiplicativeOperator::getSymbol

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

MultiplicativeOperator::getAnAncestorEnclosingFunction

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

MultiplicativeOperator::getIndex

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

MultiplicativeOperator::getParentOid

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

MultiplicativeOperator::getRelativePath

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

MultiplicativeOperator::getLastChild

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

MultiplicativeOperator::getEndColumnNumber

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

MultiplicativeOperator::getParent

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

MultiplicativeOperator::getChildCount

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

MultiplicativeOperator::getDecorator

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

MultiplicativeOperator::getEndLineNumber

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

MultiplicativeOperator::getATrailingComment

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

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

MultiplicativeOperator::getChild

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

MultiplicativeOperator::getRoot

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

MultiplicativeOperator::getAChild

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

MultiplicativeOperator::getStartColumnNumber

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

MultiplicativeOperator::getStartLineNumber

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

MultiplicativeOperator::__all__

Data constraint method.

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

MultiplicativeOperator::getLocation

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

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

MultiplicativeOperator::getKind

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

MultiplicativeOperator::getAModifier

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

MultiplicativeOperator::getAnAncestor

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

MultiplicativeOperator::getEnclosingFunction

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

MultiplicativeOperator::getADescendant

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

MultiplicativeOperator::getALeadingComment

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

MultiplicativeOperator::getFile

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

MultiplicativeOperator::getModifier

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

MultiplicativeOperator::getText

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

MultiplicativeOperator::getAComment

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

MultiplicativeOperator::getADecorator

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