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