MissingDeclaration
/**
* A missing declaration.
*/
Inherit from DeclarationStatement
Primary key: id: int
schema MissingDeclaration extends DeclarationStatement {
@primary id: int
}
MissingDeclaration::getADecorator
/**
* Gets a decorator.
*/
- Parameter
self
:MissingDeclaration
- Return
*Decorator
pub fn getADecorator(self: MissingDeclaration) -> *Decorator;
MissingDeclaration::getAComment
/**
* Gets the comments related to it
*/
- Parameter
self
:MissingDeclaration
- Return
*Comment
pub fn getAComment(self: MissingDeclaration) -> *Comment;
MissingDeclaration::getText
/**
* Gets the text of this node.
*/
- Parameter
self
:MissingDeclaration
- Return
string
pub fn getText(self: MissingDeclaration) -> string;
MissingDeclaration::getModifier
/**
* Gets the `i`th modifier.
*/
- Parameter
self
:MissingDeclaration
- Parameter
i
:int
- Return
Modifier
pub fn getModifier(self: MissingDeclaration, i: int) -> Modifier;
MissingDeclaration::getFile
/**
* Gets the file of this node.
*/
- Parameter
self
:MissingDeclaration
- Return
File
pub fn getFile(self: MissingDeclaration) -> File;
MissingDeclaration::getALeadingComment
/**
* Gets the leading comments of it
*/
- Parameter
self
:MissingDeclaration
- Return
*Comment
pub fn getALeadingComment(self: MissingDeclaration) -> *Comment;
MissingDeclaration::getAnAncestor
/**
* Gets an ancestor of this node.
*/
- Parameter
self
:MissingDeclaration
- Return
*Node
pub fn getAnAncestor(self: MissingDeclaration) -> *Node;
MissingDeclaration::getAModifier
/**
* Gets a modifier.
*/
- Parameter
self
:MissingDeclaration
- Return
*Modifier
pub fn getAModifier(self: MissingDeclaration) -> *Modifier;
MissingDeclaration::getKind
/**
* Get the syntax kind of this node
*/
- Parameter
self
:MissingDeclaration
- Return
int
pub fn getKind(self: MissingDeclaration) -> int;
MissingDeclaration::getEndColumnNumber
- Parameter
self
:MissingDeclaration
- Return
int
pub fn getEndColumnNumber(self: MissingDeclaration) -> int;
MissingDeclaration::getParent
/**
* Gets the parent node of this node.
*/
- Parameter
self
:MissingDeclaration
- Return
Node
pub fn getParent(self: MissingDeclaration) -> Node;
MissingDeclaration::getLastChild
/**
* Gets the last child of this node parent.
*/
- Parameter
self
:MissingDeclaration
- Return
Node
pub fn getLastChild(self: MissingDeclaration) -> Node;
MissingDeclaration::getIndex
- Parameter
self
:MissingDeclaration
- Return
int
pub fn getIndex(self: MissingDeclaration) -> int;
MissingDeclaration::getADescendant
/**
* Gets a descendant of this node.
*/
- Parameter
self
:MissingDeclaration
- Return
*Node
pub fn getADescendant(self: MissingDeclaration) -> *Node;
MissingDeclaration::getEnclosingFunction
/**
* Gets the enclosing function of it
*/
- Parameter
self
:MissingDeclaration
- Return
FunctionLikeDeclaration
pub fn getEnclosingFunction(self: MissingDeclaration) -> FunctionLikeDeclaration;
MissingDeclaration::getName
- Parameter
self
:MissingDeclaration
- Return
Identifier
pub fn getName(self: MissingDeclaration) -> Identifier;
MissingDeclaration::getRelativePath
/**
* Gets the relative path of this node.
*/
- Parameter
self
:MissingDeclaration
- Return
string
pub fn getRelativePath(self: MissingDeclaration) -> string;
MissingDeclaration::getParentOid
/**
* Gets the parent oid of this node.
*/
- Parameter
self
:MissingDeclaration
- Return
int
pub fn getParentOid(self: MissingDeclaration) -> int;
MissingDeclaration::getAnAncestorEnclosingFunction
/**
* Gets an ancestor enclosing function of it
*/
- Parameter
self
:MissingDeclaration
- Return
*FunctionLikeDeclaration
pub fn getAnAncestorEnclosingFunction(self: MissingDeclaration) -> *FunctionLikeDeclaration;
MissingDeclaration::getSymbol
/**
* Gets the symbol associated with this node.
*/
- Parameter
self
:MissingDeclaration
- Return
Symbol
pub fn getSymbol(self: MissingDeclaration) -> Symbol;
MissingDeclaration::getRoot
/**
* Gets the root top-level of this node.
*/
- Parameter
self
:MissingDeclaration
- Return
TopLevelDO
pub fn getRoot(self: MissingDeclaration) -> TopLevelDO;
MissingDeclaration::__all__
Data constraint method.
- Parameter
db
:JavascriptDB
- Return
*MissingDeclaration
pub fn __all__(db: JavascriptDB) -> *MissingDeclaration;
MissingDeclaration::getLocation
/**
* Gets the location of this node.
*/
- Parameter
self
:MissingDeclaration
- Return
Location
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.
*/
- Parameter
self
:MissingDeclaration
- Parameter
level
:int
- Return
*Node
pub fn getADescendantByLevel(self: MissingDeclaration, level: int) -> *Node;
MissingDeclaration::getChildCount
/**
* Gets the number of child nodes.
*/
- Parameter
self
:MissingDeclaration
- Return
int
pub fn getChildCount(self: MissingDeclaration) -> int;
MissingDeclaration::getDecorator
/**
* Gets the `i`th decorator.
*/
- Parameter
self
:MissingDeclaration
- Parameter
i
:int
- Return
Decorator
pub fn getDecorator(self: MissingDeclaration, i: int) -> Decorator;
MissingDeclaration::getEndLineNumber
- Parameter
self
:MissingDeclaration
- Return
int
pub fn getEndLineNumber(self: MissingDeclaration) -> int;
MissingDeclaration::getATrailingComment
/**
* Gets the trailing comments of it
*/
- Parameter
self
:MissingDeclaration
- Return
*Comment
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.
*/
- Parameter
self
:MissingDeclaration
- Parameter
level
:int
- Return
Node
pub fn getAnAncestorByLevel(self: MissingDeclaration, level: int) -> Node;
MissingDeclaration::getChild
/**
* Gets the `i`th child of this node.
*/
- Parameter
self
:MissingDeclaration
- Parameter
i
:int
- Return
Node
pub fn getChild(self: MissingDeclaration, i: int) -> Node;
MissingDeclaration::getAChild
/**
* Gets a child node of this node.
*/
- Parameter
self
:MissingDeclaration
- Return
*Node
pub fn getAChild(self: MissingDeclaration) -> *Node;
MissingDeclaration::getStartColumnNumber
- Parameter
self
:MissingDeclaration
- Return
int
pub fn getStartColumnNumber(self: MissingDeclaration) -> int;
MissingDeclaration::haveName
- Parameter
self
:MissingDeclaration
- Return
bool
pub fn haveName(self: MissingDeclaration) -> bool;
MissingDeclaration::getStartLineNumber
- Parameter
self
:MissingDeclaration
- Return
int
pub fn getStartLineNumber(self: MissingDeclaration) -> int;