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