ExportKeyword

/**
* An `export` keyword.
*/

Inherit from Modifier

Primary key: id: int

schema ExportKeyword extends Modifier {
  @primary id: int
}

ExportKeyword::getADecorator

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

ExportKeyword::getAComment

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

ExportKeyword::getText

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

ExportKeyword::getModifier

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

ExportKeyword::getFile

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

ExportKeyword::getALeadingComment

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

ExportKeyword::getADescendant

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

ExportKeyword::getEnclosingFunction

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

ExportKeyword::getAnAncestor

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

ExportKeyword::getDecorator

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

ExportKeyword::getChildCount

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

ExportKeyword::getEndColumnNumber

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

ExportKeyword::getParent

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

ExportKeyword::getLastChild

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

ExportKeyword::getIndex

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

ExportKeyword::__all__

Data constraint method.

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

ExportKeyword::getLocation

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

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

ExportKeyword::getRelativePath

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

ExportKeyword::getAnAncestorEnclosingFunction

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

ExportKeyword::getSymbol

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

ExportKeyword::getRoot

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

ExportKeyword::getParentOid

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

ExportKeyword::getEndLineNumber

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

ExportKeyword::getATrailingComment

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

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

ExportKeyword::getChild

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

ExportKeyword::getAChild

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

ExportKeyword::getStartColumnNumber

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

ExportKeyword::getStartLineNumber

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

ExportKeyword::getAModifier

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

ExportKeyword::getKind

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