MissingDeclaration

/**
* A missing declaration.
*/

Inherit from DeclarationStatement

Primary key: id: int

schema MissingDeclaration extends DeclarationStatement {
  @primary id: int
}

MissingDeclaration::getADecorator

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

MissingDeclaration::getAComment

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

MissingDeclaration::getText

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

MissingDeclaration::getModifier

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

MissingDeclaration::getFile

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

MissingDeclaration::getALeadingComment

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

MissingDeclaration::getAnAncestor

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

MissingDeclaration::getAModifier

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

MissingDeclaration::getKind

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

MissingDeclaration::getEndColumnNumber

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

MissingDeclaration::getParent

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

MissingDeclaration::getLastChild

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

MissingDeclaration::getIndex

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

MissingDeclaration::getADescendant

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

MissingDeclaration::getEnclosingFunction

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

MissingDeclaration::getName

pub fn getName(self: MissingDeclaration) -> Identifier;

MissingDeclaration::getRelativePath

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

MissingDeclaration::getParentOid

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

MissingDeclaration::getAnAncestorEnclosingFunction

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

MissingDeclaration::getSymbol

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

MissingDeclaration::getRoot

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

MissingDeclaration::__all__

Data constraint method.

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

MissingDeclaration::getLocation

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

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

MissingDeclaration::getChildCount

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

MissingDeclaration::getDecorator

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

MissingDeclaration::getEndLineNumber

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

MissingDeclaration::getATrailingComment

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

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

MissingDeclaration::getChild

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

MissingDeclaration::getAChild

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

MissingDeclaration::getStartColumnNumber

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

MissingDeclaration::haveName

pub fn haveName(self: MissingDeclaration) -> bool;

MissingDeclaration::getStartLineNumber

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