MergeDeclarationMarker

/**
* A merge-declaration marker.
* Will not appear in the AST.
*/

Inherit from Statement

Primary key: id: int

schema MergeDeclarationMarker extends Statement {
  @primary id: int
}

MergeDeclarationMarker::getSymbol

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

MergeDeclarationMarker::getAnAncestorEnclosingFunction

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

MergeDeclarationMarker::getIndex

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

MergeDeclarationMarker::getParentOid

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

MergeDeclarationMarker::getRelativePath

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

MergeDeclarationMarker::getLastChild

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

MergeDeclarationMarker::getEndColumnNumber

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

MergeDeclarationMarker::getParent

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

MergeDeclarationMarker::getChildCount

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

MergeDeclarationMarker::getDecorator

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

MergeDeclarationMarker::getEndLineNumber

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

MergeDeclarationMarker::getATrailingComment

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

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

MergeDeclarationMarker::getChild

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

MergeDeclarationMarker::getRoot

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

MergeDeclarationMarker::getAChild

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

MergeDeclarationMarker::getStartColumnNumber

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

MergeDeclarationMarker::getStartLineNumber

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

MergeDeclarationMarker::__all__

Data constraint method.

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

MergeDeclarationMarker::getLocation

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

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

MergeDeclarationMarker::getKind

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

MergeDeclarationMarker::getAModifier

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

MergeDeclarationMarker::getAnAncestor

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

MergeDeclarationMarker::getEnclosingFunction

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

MergeDeclarationMarker::getADescendant

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

MergeDeclarationMarker::getALeadingComment

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

MergeDeclarationMarker::getFile

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

MergeDeclarationMarker::getModifier

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

MergeDeclarationMarker::getText

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

MergeDeclarationMarker::getAComment

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

MergeDeclarationMarker::getADecorator

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