DotDotDotToken

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

Inherit from Token

Primary key: id: int

schema DotDotDotToken extends Token { @primary id: int } 

DotDotDotToken::getSymbol

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

DotDotDotToken::getAnAncestorEnclosingFunction

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

DotDotDotToken::getIndex

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

DotDotDotToken::getParentOid

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

DotDotDotToken::getRelativePath

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

DotDotDotToken::getLastChild

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

DotDotDotToken::getEndColumnNumber

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

DotDotDotToken::getParent

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

DotDotDotToken::getChildCount

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

DotDotDotToken::getDecorator

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

DotDotDotToken::getEndLineNumber

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

DotDotDotToken::getATrailingComment

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

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

DotDotDotToken::getChild

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

DotDotDotToken::getRoot

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

DotDotDotToken::getAChild

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

DotDotDotToken::getStartColumnNumber

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

DotDotDotToken::getStartLineNumber

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

DotDotDotToken::__all__

Data constraint method.

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

DotDotDotToken::getLocation

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

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

DotDotDotToken::getKind

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

DotDotDotToken::getAModifier

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

DotDotDotToken::getAnAncestor

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

DotDotDotToken::getEnclosingFunction

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

DotDotDotToken::getADescendant

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

DotDotDotToken::getALeadingComment

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

DotDotDotToken::getFile

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

DotDotDotToken::getModifier

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

DotDotDotToken::getText

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

DotDotDotToken::getAComment

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

DotDotDotToken::getADecorator

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