ProtectedKeyword

/**
* A `protected` keyword.
*/

Inherit from Modifier

Primary key: id: int

schema ProtectedKeyword extends Modifier {
  @primary id: int
}

ProtectedKeyword::getADecorator

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

ProtectedKeyword::getAComment

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

ProtectedKeyword::getText

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

ProtectedKeyword::getModifier

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

ProtectedKeyword::getFile

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

ProtectedKeyword::getALeadingComment

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

ProtectedKeyword::getADescendant

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

ProtectedKeyword::getEnclosingFunction

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

ProtectedKeyword::getAnAncestor

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

ProtectedKeyword::getDecorator

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

ProtectedKeyword::getChildCount

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

ProtectedKeyword::getEndColumnNumber

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

ProtectedKeyword::getParent

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

ProtectedKeyword::getLastChild

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

ProtectedKeyword::getIndex

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

ProtectedKeyword::__all__

Data constraint method.

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

ProtectedKeyword::getLocation

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

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

ProtectedKeyword::getRelativePath

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

ProtectedKeyword::getAnAncestorEnclosingFunction

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

ProtectedKeyword::getSymbol

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

ProtectedKeyword::getRoot

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

ProtectedKeyword::getParentOid

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

ProtectedKeyword::getEndLineNumber

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

ProtectedKeyword::getATrailingComment

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

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

ProtectedKeyword::getChild

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

ProtectedKeyword::getAChild

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

ProtectedKeyword::getStartColumnNumber

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

ProtectedKeyword::getStartLineNumber

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

ProtectedKeyword::getAModifier

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

ProtectedKeyword::getKind

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