DefaultKeyword

/**
* A `default` keyword.
*/

Inherit from Modifier

Primary key: id: int

schema DefaultKeyword extends Modifier {
  @primary id: int
}

DefaultKeyword::getADecorator

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

DefaultKeyword::getAComment

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

DefaultKeyword::getText

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

DefaultKeyword::getModifier

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

DefaultKeyword::getFile

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

DefaultKeyword::getALeadingComment

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

DefaultKeyword::getADescendant

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

DefaultKeyword::getEnclosingFunction

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

DefaultKeyword::getAnAncestor

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

DefaultKeyword::getDecorator

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

DefaultKeyword::getChildCount

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

DefaultKeyword::getEndColumnNumber

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

DefaultKeyword::getParent

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

DefaultKeyword::getLastChild

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

DefaultKeyword::getIndex

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

DefaultKeyword::__all__

Data constraint method.

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

DefaultKeyword::getLocation

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

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

DefaultKeyword::getRelativePath

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

DefaultKeyword::getAnAncestorEnclosingFunction

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

DefaultKeyword::getSymbol

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

DefaultKeyword::getRoot

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

DefaultKeyword::getParentOid

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

DefaultKeyword::getEndLineNumber

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

DefaultKeyword::getATrailingComment

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

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

DefaultKeyword::getChild

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

DefaultKeyword::getAChild

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

DefaultKeyword::getStartColumnNumber

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

DefaultKeyword::getStartLineNumber

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

DefaultKeyword::getAModifier

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

DefaultKeyword::getKind

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