AmpersandAmpersandToken

/** * An `&&` token. */ 

Inherit from Token

Primary key: id: int

schema AmpersandAmpersandToken extends Token { @primary id: int } 

AmpersandAmpersandToken::getSymbol

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

AmpersandAmpersandToken::getAnAncestorEnclosingFunction

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

AmpersandAmpersandToken::getIndex

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

AmpersandAmpersandToken::getParentOid

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

AmpersandAmpersandToken::getRelativePath

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

AmpersandAmpersandToken::getLastChild

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

AmpersandAmpersandToken::getEndColumnNumber

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

AmpersandAmpersandToken::getParent

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

AmpersandAmpersandToken::getChildCount

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

AmpersandAmpersandToken::getDecorator

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

AmpersandAmpersandToken::getEndLineNumber

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

AmpersandAmpersandToken::getATrailingComment

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

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

AmpersandAmpersandToken::getChild

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

AmpersandAmpersandToken::getRoot

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

AmpersandAmpersandToken::getAChild

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

AmpersandAmpersandToken::getStartColumnNumber

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

AmpersandAmpersandToken::getStartLineNumber

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

AmpersandAmpersandToken::__all__

Data constraint method.

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

AmpersandAmpersandToken::getLocation

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

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

AmpersandAmpersandToken::getKind

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

AmpersandAmpersandToken::getAModifier

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

AmpersandAmpersandToken::getAnAncestor

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

AmpersandAmpersandToken::getEnclosingFunction

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

AmpersandAmpersandToken::getADescendant

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

AmpersandAmpersandToken::getALeadingComment

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

AmpersandAmpersandToken::getFile

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

AmpersandAmpersandToken::getModifier

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

AmpersandAmpersandToken::getText

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

AmpersandAmpersandToken::getAComment

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

AmpersandAmpersandToken::getADecorator

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