PrivateKeyword

/**
* A `private` keyword.
*/

Inherit from Modifier

Primary key: id: int

schema PrivateKeyword extends Modifier {
  @primary id: int
}

PrivateKeyword::getADecorator

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

PrivateKeyword::getAComment

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

PrivateKeyword::getText

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

PrivateKeyword::getModifier

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

PrivateKeyword::getFile

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

PrivateKeyword::getALeadingComment

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

PrivateKeyword::getADescendant

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

PrivateKeyword::getEnclosingFunction

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

PrivateKeyword::getAnAncestor

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

PrivateKeyword::getDecorator

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

PrivateKeyword::getChildCount

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

PrivateKeyword::getEndColumnNumber

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

PrivateKeyword::getParent

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

PrivateKeyword::getLastChild

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

PrivateKeyword::getIndex

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

PrivateKeyword::__all__

Data constraint method.

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

PrivateKeyword::getLocation

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

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

PrivateKeyword::getRelativePath

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

PrivateKeyword::getAnAncestorEnclosingFunction

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

PrivateKeyword::getSymbol

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

PrivateKeyword::getRoot

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

PrivateKeyword::getParentOid

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

PrivateKeyword::getEndLineNumber

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

PrivateKeyword::getATrailingComment

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

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

PrivateKeyword::getChild

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

PrivateKeyword::getAChild

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

PrivateKeyword::getStartColumnNumber

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

PrivateKeyword::getStartLineNumber

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

PrivateKeyword::getAModifier

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

PrivateKeyword::getKind

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