ExportSpecifier

/**
* An export specifier.
*/

Inherit from Node

Primary key: id: int

schema ExportSpecifier extends Node {
  @primary id: int
}

ExportSpecifier::getEnclosingFunction

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

ExportSpecifier::getADescendant

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

ExportSpecifier::getRoot

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

ExportSpecifier::getAnAncestor

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

ExportSpecifier::getChild

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

ExportSpecifier::getChildCount

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

ExportSpecifier::getAChild

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

ExportSpecifier::getStartColumnNumber

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

ExportSpecifier::getStartLineNumber

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

ExportSpecifier::getEndLineNumber

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

ExportSpecifier::getATrailingComment

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

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

ExportSpecifier::getALeadingComment

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

ExportSpecifier::getFile

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

ExportSpecifier::__all__

Data constraint method.

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

ExportSpecifier::getLocation

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

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

ExportSpecifier::getModifier

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

ExportSpecifier::getText

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

ExportSpecifier::getDecorator

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

ExportSpecifier::getAComment

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

ExportSpecifier::getADecorator

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

ExportSpecifier::getAModifier

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

ExportSpecifier::getKind

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

ExportSpecifier::getParent

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

ExportSpecifier::getEndColumnNumber

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

ExportSpecifier::getLastChild

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

ExportSpecifier::getRelativePath

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

ExportSpecifier::getParentOid

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

ExportSpecifier::getIndex

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

ExportSpecifier::getAnAncestorEnclosingFunction

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

ExportSpecifier::getSymbol

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