IndexSignature

/** * An IndexSignature */ 

Inherit from ClassElement

Primary key: id: int

schema IndexSignature extends ClassElement { @primary id: int } 

IndexSignature::getSymbol

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

IndexSignature::getAnAncestorEnclosingFunction

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

IndexSignature::getIndex

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

IndexSignature::getParentOid

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

IndexSignature::getRelativePath

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

IndexSignature::getLastChild

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

IndexSignature::getEndColumnNumber

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

IndexSignature::getParent

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

IndexSignature::getChildCount

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

IndexSignature::getDecorator

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

IndexSignature::getEndLineNumber

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

IndexSignature::getATrailingComment

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

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

IndexSignature::getChild

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

IndexSignature::getRoot

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

IndexSignature::getAChild

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

IndexSignature::getStartColumnNumber

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

IndexSignature::getStartLineNumber

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

IndexSignature::__all__

Data constraint method.

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

IndexSignature::getLocation

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

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

IndexSignature::getKind

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

IndexSignature::getAModifier

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

IndexSignature::getAnAncestor

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

IndexSignature::getEnclosingFunction

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

IndexSignature::getADescendant

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

IndexSignature::getALeadingComment

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

IndexSignature::getFile

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

IndexSignature::getModifier

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

IndexSignature::getText

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

IndexSignature::getAComment

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

IndexSignature::getADecorator

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