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