IntrinsicKeyword
/** * An `intrinsic` keyword. */
Inherit from Token
Primary key: id: int
schema IntrinsicKeyword extends Token { @primary id: int }
IntrinsicKeyword::getSymbol
/** * Gets the symbol associated with this node. */
- Parameter
self
:IntrinsicKeyword
- Return
Symbol
pub fn getSymbol(self: IntrinsicKeyword) -> Symbol;
IntrinsicKeyword::getAnAncestorEnclosingFunction
/** * Gets an ancestor enclosing function of it */
- Parameter
self
:IntrinsicKeyword
- Return
*FunctionLikeDeclaration
pub fn getAnAncestorEnclosingFunction(self: IntrinsicKeyword) -> *FunctionLikeDeclaration;
IntrinsicKeyword::getIndex
- Parameter
self
:IntrinsicKeyword
- Return
int
pub fn getIndex(self: IntrinsicKeyword) -> int;
IntrinsicKeyword::getParentOid
/** * Gets the parent oid of this node. */
- Parameter
self
:IntrinsicKeyword
- Return
int
pub fn getParentOid(self: IntrinsicKeyword) -> int;
IntrinsicKeyword::getRelativePath
/** * Gets the relative path of this node. */
- Parameter
self
:IntrinsicKeyword
- Return
string
pub fn getRelativePath(self: IntrinsicKeyword) -> string;
IntrinsicKeyword::getLastChild
/** * Gets the last child of this node parent. */
- Parameter
self
:IntrinsicKeyword
- Return
Node
pub fn getLastChild(self: IntrinsicKeyword) -> Node;
IntrinsicKeyword::getEndColumnNumber
- Parameter
self
:IntrinsicKeyword
- Return
int
pub fn getEndColumnNumber(self: IntrinsicKeyword) -> int;
IntrinsicKeyword::getParent
/** * Gets the parent node of this node. */
- Parameter
self
:IntrinsicKeyword
- Return
Node
pub fn getParent(self: IntrinsicKeyword) -> Node;
IntrinsicKeyword::getChildCount
/** * Gets the number of child nodes. */
- Parameter
self
:IntrinsicKeyword
- Return
int
pub fn getChildCount(self: IntrinsicKeyword) -> int;
IntrinsicKeyword::getDecorator
/** * Gets the `i`th decorator. */
- Parameter
self
:IntrinsicKeyword
- Parameter
i
:int
- Return
Decorator
pub fn getDecorator(self: IntrinsicKeyword, i: int) -> Decorator;
IntrinsicKeyword::getEndLineNumber
- Parameter
self
:IntrinsicKeyword
- Return
int
pub fn getEndLineNumber(self: IntrinsicKeyword) -> int;
IntrinsicKeyword::getATrailingComment
/** * Gets the trailing comments of it */
- Parameter
self
:IntrinsicKeyword
- Return
*Comment
pub fn getATrailingComment(self: IntrinsicKeyword) -> *Comment;
IntrinsicKeyword::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. */
- Parameter
self
:IntrinsicKeyword
- Parameter
level
:int
- Return
Node
pub fn getAnAncestorByLevel(self: IntrinsicKeyword, level: int) -> Node;
IntrinsicKeyword::getChild
/** * Gets the `i`th child of this node. */
- Parameter
self
:IntrinsicKeyword
- Parameter
i
:int
- Return
Node
pub fn getChild(self: IntrinsicKeyword, i: int) -> Node;
IntrinsicKeyword::getRoot
/** * Gets the root top-level of this node. */
- Parameter
self
:IntrinsicKeyword
- Return
TopLevelDO
pub fn getRoot(self: IntrinsicKeyword) -> TopLevelDO;
IntrinsicKeyword::getAChild
/** * Gets a child node of this node. */
- Parameter
self
:IntrinsicKeyword
- Return
*Node
pub fn getAChild(self: IntrinsicKeyword) -> *Node;
IntrinsicKeyword::getStartColumnNumber
- Parameter
self
:IntrinsicKeyword
- Return
int
pub fn getStartColumnNumber(self: IntrinsicKeyword) -> int;
IntrinsicKeyword::getStartLineNumber
- Parameter
self
:IntrinsicKeyword
- Return
int
pub fn getStartLineNumber(self: IntrinsicKeyword) -> int;
IntrinsicKeyword::__all__
Data constraint method.
- Parameter
db
:JavascriptDB
- Return
*IntrinsicKeyword
pub fn __all__(db: JavascriptDB) -> *IntrinsicKeyword;
IntrinsicKeyword::getLocation
/** * Gets the location of this node. */
- Parameter
self
:IntrinsicKeyword
- Return
Location
pub fn getLocation(self: IntrinsicKeyword) -> Location;
IntrinsicKeyword::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. */
- Parameter
self
:IntrinsicKeyword
- Parameter
level
:int
- Return
*Node
pub fn getADescendantByLevel(self: IntrinsicKeyword, level: int) -> *Node;
IntrinsicKeyword::getKind
/** * Get the syntax kind of this node */
- Parameter
self
:IntrinsicKeyword
- Return
int
pub fn getKind(self: IntrinsicKeyword) -> int;
IntrinsicKeyword::getAModifier
/** * Gets a modifier. */
- Parameter
self
:IntrinsicKeyword
- Return
*Modifier
pub fn getAModifier(self: IntrinsicKeyword) -> *Modifier;
IntrinsicKeyword::getAnAncestor
/** * Gets an ancestor of this node. */
- Parameter
self
:IntrinsicKeyword
- Return
*Node
pub fn getAnAncestor(self: IntrinsicKeyword) -> *Node;
IntrinsicKeyword::getEnclosingFunction
/** * Gets the enclosing function of it */
- Parameter
self
:IntrinsicKeyword
- Return
FunctionLikeDeclaration
pub fn getEnclosingFunction(self: IntrinsicKeyword) -> FunctionLikeDeclaration;
IntrinsicKeyword::getADescendant
/** * Gets a descendant of this node. */
- Parameter
self
:IntrinsicKeyword
- Return
*Node
pub fn getADescendant(self: IntrinsicKeyword) -> *Node;
IntrinsicKeyword::getALeadingComment
/** * Gets the leading comments of it */
- Parameter
self
:IntrinsicKeyword
- Return
*Comment
pub fn getALeadingComment(self: IntrinsicKeyword) -> *Comment;
IntrinsicKeyword::getFile
/** * Gets the file of this node. */
- Parameter
self
:IntrinsicKeyword
- Return
File
pub fn getFile(self: IntrinsicKeyword) -> File;
IntrinsicKeyword::getModifier
/** * Gets the `i`th modifier. */
- Parameter
self
:IntrinsicKeyword
- Parameter
i
:int
- Return
Modifier
pub fn getModifier(self: IntrinsicKeyword, i: int) -> Modifier;
IntrinsicKeyword::getText
/** * Gets the text of this node. */
- Parameter
self
:IntrinsicKeyword
- Return
string
pub fn getText(self: IntrinsicKeyword) -> string;
IntrinsicKeyword::getAComment
/** * Gets the comments related to it */
- Parameter
self
:IntrinsicKeyword
- Return
*Comment
pub fn getAComment(self: IntrinsicKeyword) -> *Comment;
IntrinsicKeyword::getADecorator
/** * Gets a decorator. */
- Parameter
self
:IntrinsicKeyword
- Return
*Decorator
pub fn getADecorator(self: IntrinsicKeyword) -> *Decorator;