ExportAssignment

/**
* An export assignment.
*/

Inherit from DeclarationStatement

Primary key: id: int

schema ExportAssignment extends DeclarationStatement {
  @primary id: int
}

ExportAssignment::getADecorator

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

ExportAssignment::getAComment

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

ExportAssignment::getText

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

ExportAssignment::getModifier

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

ExportAssignment::getFile

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

ExportAssignment::getALeadingComment

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

ExportAssignment::getADescendant

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

ExportAssignment::getEnclosingFunction

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

ExportAssignment::getAnAncestor

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

ExportAssignment::getDecorator

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

ExportAssignment::getChildCount

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

ExportAssignment::getEndColumnNumber

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

ExportAssignment::getParent

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

ExportAssignment::getLastChild

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

ExportAssignment::getIndex

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

ExportAssignment::__all__

Data constraint method.

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

ExportAssignment::getLocation

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

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

ExportAssignment::getRelativePath

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

ExportAssignment::getAnAncestorEnclosingFunction

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

ExportAssignment::getSymbol

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

ExportAssignment::getRoot

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

ExportAssignment::getParentOid

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

ExportAssignment::getEndLineNumber

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

ExportAssignment::getATrailingComment

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

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

ExportAssignment::getChild

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

ExportAssignment::getAChild

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

ExportAssignment::getStartColumnNumber

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

ExportAssignment::getStartLineNumber

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

ExportAssignment::getAModifier

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

ExportAssignment::getKind

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