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. */ 
pub fn getSymbol(self: IntrinsicKeyword) -> Symbol; 

IntrinsicKeyword::getAnAncestorEnclosingFunction

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

IntrinsicKeyword::getIndex

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

IntrinsicKeyword::getParentOid

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

IntrinsicKeyword::getRelativePath

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

IntrinsicKeyword::getLastChild

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

IntrinsicKeyword::getEndColumnNumber

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

IntrinsicKeyword::getParent

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

IntrinsicKeyword::getChildCount

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

IntrinsicKeyword::getDecorator

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

IntrinsicKeyword::getEndLineNumber

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

IntrinsicKeyword::getATrailingComment

/** * Gets the trailing comments of it */ 
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. */ 
pub fn getAnAncestorByLevel(self: IntrinsicKeyword, level: int) -> Node; 

IntrinsicKeyword::getChild

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

IntrinsicKeyword::getRoot

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

IntrinsicKeyword::getAChild

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

IntrinsicKeyword::getStartColumnNumber

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

IntrinsicKeyword::getStartLineNumber

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

IntrinsicKeyword::__all__

Data constraint method.

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

IntrinsicKeyword::getLocation

/** * Gets the location of this node. */ 
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. */ 
pub fn getADescendantByLevel(self: IntrinsicKeyword, level: int) -> *Node; 

IntrinsicKeyword::getKind

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

IntrinsicKeyword::getAModifier

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

IntrinsicKeyword::getAnAncestor

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

IntrinsicKeyword::getEnclosingFunction

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

IntrinsicKeyword::getADescendant

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

IntrinsicKeyword::getALeadingComment

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

IntrinsicKeyword::getFile

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

IntrinsicKeyword::getModifier

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

IntrinsicKeyword::getText

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

IntrinsicKeyword::getAComment

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

IntrinsicKeyword::getADecorator

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