EndOfDeclarationMarker

/**
* An end-of-declaration marker.
* Will not appear in the AST.
*/

Inherit from Statement

Primary key: id: int

schema EndOfDeclarationMarker extends Statement {
  @primary id: int
}

EndOfDeclarationMarker::getSymbol

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

EndOfDeclarationMarker::getAnAncestorEnclosingFunction

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

EndOfDeclarationMarker::getIndex

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

EndOfDeclarationMarker::getParentOid

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

EndOfDeclarationMarker::getRelativePath

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

EndOfDeclarationMarker::getLastChild

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

EndOfDeclarationMarker::getEndColumnNumber

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

EndOfDeclarationMarker::getParent

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

EndOfDeclarationMarker::getChildCount

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

EndOfDeclarationMarker::getDecorator

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

EndOfDeclarationMarker::getEndLineNumber

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

EndOfDeclarationMarker::getATrailingComment

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

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

EndOfDeclarationMarker::getChild

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

EndOfDeclarationMarker::getRoot

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

EndOfDeclarationMarker::getAChild

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

EndOfDeclarationMarker::getStartColumnNumber

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

EndOfDeclarationMarker::getStartLineNumber

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

EndOfDeclarationMarker::__all__

Data constraint method.

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

EndOfDeclarationMarker::getLocation

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

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

EndOfDeclarationMarker::getKind

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

EndOfDeclarationMarker::getAModifier

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

EndOfDeclarationMarker::getAnAncestor

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

EndOfDeclarationMarker::getEnclosingFunction

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

EndOfDeclarationMarker::getADescendant

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

EndOfDeclarationMarker::getALeadingComment

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

EndOfDeclarationMarker::getFile

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

EndOfDeclarationMarker::getModifier

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

EndOfDeclarationMarker::getText

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

EndOfDeclarationMarker::getAComment

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

EndOfDeclarationMarker::getADecorator

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