MemberName

/** * A member name. */ 

Inherit from Node

Primary key: id: int

schema MemberName extends Node { @primary id: int } 

MemberName::getRoot

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

MemberName::getAnAncestor

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

MemberName::getChild

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

MemberName::getChildCount

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

MemberName::getAChild

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

MemberName::getStartColumnNumber

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

MemberName::getAnAncestorEnclosingFunction

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

MemberName::getSymbol

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

MemberName::getEndLineNumber

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

MemberName::getATrailingComment

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

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

MemberName::getALeadingComment

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

MemberName::getFile

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

MemberName::__all__

Data constraint method.

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

MemberName::getLocation

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

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

MemberName::getAComment

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

MemberName::getADecorator

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

MemberName::getDecorator

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

MemberName::getEnclosingFunction

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

MemberName::getADescendant

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

MemberName::getName

/** * Gets the name of this MemberName. */ 
pub fn getName(self: MemberName) -> string; 

MemberName::getRelativePath

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

MemberName::getModifier

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

MemberName::getText

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

MemberName::getStartLineNumber

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

MemberName::getAModifier

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

MemberName::getKind

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

MemberName::getParent

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

MemberName::getEndColumnNumber

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

MemberName::getLastChild

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

MemberName::getParentOid

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

MemberName::getIndex

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