NonNullExpression

/**
* A non-null expression using `!`.
*/

Inherit from LeftHandSideExpression

Primary key: id: int

schema NonNullExpression extends LeftHandSideExpression {
  @primary id: int
}

NonNullExpression::getRelativePath

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

NonNullExpression::getAnAncestorEnclosingFunction

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

NonNullExpression::getSymbol

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

NonNullExpression::getIndex

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

NonNullExpression::getDecorator

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

NonNullExpression::getChildCount

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

NonNullExpression::getLastChild

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

NonNullExpression::getEndColumnNumber

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

NonNullExpression::getModifier

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

NonNullExpression::getParentOid

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

NonNullExpression::getADescendant

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

NonNullExpression::getEnclosingFunction

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

NonNullExpression::getRoot

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

NonNullExpression::getChild

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

NonNullExpression::getAnAncestor

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

NonNullExpression::getParent

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

NonNullExpression::getExpression

pub fn getExpression(self: NonNullExpression) -> Expression;

NonNullExpression::getStartLineNumber

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

NonNullExpression::__all__

Data constraint method.

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

NonNullExpression::getLocation

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

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

NonNullExpression::getStartColumnNumber

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

NonNullExpression::getAChild

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

NonNullExpression::getEndLineNumber

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

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

NonNullExpression::getATrailingComment

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

NonNullExpression::getALeadingComment

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

NonNullExpression::getFile

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

NonNullExpression::getAComment

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

NonNullExpression::getADecorator

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

NonNullExpression::getAModifier

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

NonNullExpression::getKind

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

NonNullExpression::getText

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