AccessorElement

/** * An AccessorElement */ 

Inherit from ClassElement

Primary key: id: int

schema AccessorElement extends ClassElement { @primary id: int } 

AccessorElement::getSymbol

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

AccessorElement::getAnAncestorEnclosingFunction

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

AccessorElement::getIndex

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

AccessorElement::getParentOid

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

AccessorElement::getRelativePath

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

AccessorElement::getLastChild

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

AccessorElement::getEndColumnNumber

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

AccessorElement::getParent

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

AccessorElement::getChildCount

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

AccessorElement::getDecorator

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

AccessorElement::getEndLineNumber

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

AccessorElement::getATrailingComment

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

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

AccessorElement::getChild

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

AccessorElement::getRoot

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

AccessorElement::getAChild

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

AccessorElement::getStartColumnNumber

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

AccessorElement::getStartLineNumber

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

AccessorElement::__all__

Data constraint method.

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

AccessorElement::getLocation

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

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

AccessorElement::getKind

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

AccessorElement::getAModifier

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

AccessorElement::getAnAncestor

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

AccessorElement::getEnclosingFunction

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

AccessorElement::getADescendant

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

AccessorElement::getALeadingComment

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

AccessorElement::getFile

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

AccessorElement::getModifier

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

AccessorElement::getText

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

AccessorElement::getAComment

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

AccessorElement::getADecorator

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