SubtractionExpression

/** * A subtraction expression using `-`. */ 

Inherit from AdditiveExpression

Primary key: id: int

schema SubtractionExpression extends AdditiveExpression { @primary id: int } 

SubtractionExpression::getAnAncestor

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

SubtractionExpression::getLeft

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

SubtractionExpression::getLeftOperand

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

SubtractionExpression::getModifier

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

SubtractionExpression::getText

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

SubtractionExpression::getAComment

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

SubtractionExpression::getADecorator

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

SubtractionExpression::getADescendant

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

SubtractionExpression::getEnclosingFunction

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

SubtractionExpression::getParentOid

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

SubtractionExpression::getRoot

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

SubtractionExpression::getSymbol

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

SubtractionExpression::getAnAncestorEnclosingFunction

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

SubtractionExpression::getRelativePath

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

SubtractionExpression::getIndex

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

SubtractionExpression::getChildCount

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

SubtractionExpression::getStartLineNumber

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

SubtractionExpression::getAnOperand

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

SubtractionExpression::getAChild

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

SubtractionExpression::getStartColumnNumber

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

SubtractionExpression::getEndLineNumber

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

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

SubtractionExpression::getATrailingComment

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

SubtractionExpression::__all__

Data constraint method.

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

SubtractionExpression::getLocation

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

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

SubtractionExpression::getALeadingComment

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

SubtractionExpression::getFile

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

SubtractionExpression::getDecorator

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

SubtractionExpression::getRightOperand

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

SubtractionExpression::getChild

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

SubtractionExpression::getRight

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

SubtractionExpression::getOperator

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

SubtractionExpression::getAModifier

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

SubtractionExpression::getKind

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

SubtractionExpression::getEndColumnNumber

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

SubtractionExpression::getParent

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

SubtractionExpression::getLastChild

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