QuestionQuestionEqualsToken

/**
* A `??=` token.
*/

Inherit from Token

Primary key: id: int

schema QuestionQuestionEqualsToken extends Token {
  @primary id: int
}

QuestionQuestionEqualsToken::getSymbol

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

QuestionQuestionEqualsToken::getAnAncestorEnclosingFunction

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

QuestionQuestionEqualsToken::getIndex

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

QuestionQuestionEqualsToken::getParentOid

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

QuestionQuestionEqualsToken::getRelativePath

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

QuestionQuestionEqualsToken::getLastChild

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

QuestionQuestionEqualsToken::getEndColumnNumber

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

QuestionQuestionEqualsToken::getParent

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

QuestionQuestionEqualsToken::getChildCount

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

QuestionQuestionEqualsToken::getDecorator

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

QuestionQuestionEqualsToken::getEndLineNumber

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

QuestionQuestionEqualsToken::getATrailingComment

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

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

QuestionQuestionEqualsToken::getChild

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

QuestionQuestionEqualsToken::getRoot

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

QuestionQuestionEqualsToken::getAChild

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

QuestionQuestionEqualsToken::getStartColumnNumber

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

QuestionQuestionEqualsToken::getStartLineNumber

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

QuestionQuestionEqualsToken::__all__

Data constraint method.

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

QuestionQuestionEqualsToken::getLocation

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

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

QuestionQuestionEqualsToken::getKind

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

QuestionQuestionEqualsToken::getAModifier

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

QuestionQuestionEqualsToken::getAnAncestor

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

QuestionQuestionEqualsToken::getEnclosingFunction

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

QuestionQuestionEqualsToken::getADescendant

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

QuestionQuestionEqualsToken::getALeadingComment

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

QuestionQuestionEqualsToken::getFile

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

QuestionQuestionEqualsToken::getModifier

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

QuestionQuestionEqualsToken::getText

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

QuestionQuestionEqualsToken::getAComment

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

QuestionQuestionEqualsToken::getADecorator

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