JsxClosingElement

/**
* A JSX closing element.
*/

Inherit from Expression

Primary key: id: int

schema JsxClosingElement extends Expression {
  @primary id: int
}

JsxClosingElement::getSymbol

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

JsxClosingElement::getAnAncestorEnclosingFunction

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

JsxClosingElement::getIndex

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

JsxClosingElement::getParentOid

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

JsxClosingElement::getRelativePath

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

JsxClosingElement::getLastChild

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

JsxClosingElement::getEndColumnNumber

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

JsxClosingElement::getKind

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

JsxClosingElement::getAModifier

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

JsxClosingElement::getChildCount

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

JsxClosingElement::getDecorator

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

JsxClosingElement::getChild

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

JsxClosingElement::getAnAncestor

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

JsxClosingElement::getParent

pub fn getParent(self: JsxClosingElement) -> JsxElement;

JsxClosingElement::getAChild

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

JsxClosingElement::getStartColumnNumber

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

JsxClosingElement::getStartLineNumber

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

JsxClosingElement::__all__

Data constraint method.

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

JsxClosingElement::getLocation

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

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

JsxClosingElement::getRoot

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

JsxClosingElement::getEnclosingFunction

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

JsxClosingElement::getADescendant

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

JsxClosingElement::getEndLineNumber

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

JsxClosingElement::getATrailingComment

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

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

JsxClosingElement::getALeadingComment

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

JsxClosingElement::getFile

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

JsxClosingElement::getModifier

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

JsxClosingElement::getText

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

JsxClosingElement::getAComment

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

JsxClosingElement::getADecorator

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