MinusToken

/** * A `-` token. */ 

Inherit from Token

Primary key: id: int

schema MinusToken extends Token { @primary id: int } 

MinusToken::getSymbol

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

MinusToken::getAnAncestorEnclosingFunction

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

MinusToken::getIndex

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

MinusToken::getParentOid

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

MinusToken::getRelativePath

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

MinusToken::getLastChild

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

MinusToken::getEndColumnNumber

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

MinusToken::getParent

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

MinusToken::getChildCount

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

MinusToken::getDecorator

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

MinusToken::getEndLineNumber

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

MinusToken::getATrailingComment

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

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

MinusToken::getChild

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

MinusToken::getRoot

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

MinusToken::getAChild

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

MinusToken::getStartColumnNumber

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

MinusToken::getStartLineNumber

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

MinusToken::__all__

Data constraint method.

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

MinusToken::getLocation

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

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

MinusToken::getKind

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

MinusToken::getAModifier

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

MinusToken::getAnAncestor

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

MinusToken::getEnclosingFunction

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

MinusToken::getADescendant

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

MinusToken::getALeadingComment

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

MinusToken::getFile

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

MinusToken::getModifier

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

MinusToken::getText

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

MinusToken::getAComment

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

MinusToken::getADecorator

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