SemicolonClassElement

/** * A SemicolonClassElement */ 

Inherit from ClassElement

Primary key: id: int

schema SemicolonClassElement extends ClassElement { @primary id: int } 

SemicolonClassElement::getSymbol

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

SemicolonClassElement::getAnAncestorEnclosingFunction

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

SemicolonClassElement::getIndex

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

SemicolonClassElement::getParentOid

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

SemicolonClassElement::getRelativePath

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

SemicolonClassElement::getLastChild

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

SemicolonClassElement::getEndColumnNumber

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

SemicolonClassElement::getParent

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

SemicolonClassElement::getChildCount

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

SemicolonClassElement::getDecorator

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

SemicolonClassElement::getEndLineNumber

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

SemicolonClassElement::getATrailingComment

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

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

SemicolonClassElement::getChild

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

SemicolonClassElement::getRoot

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

SemicolonClassElement::getAChild

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

SemicolonClassElement::getStartColumnNumber

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

SemicolonClassElement::getStartLineNumber

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

SemicolonClassElement::__all__

Data constraint method.

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

SemicolonClassElement::getLocation

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

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

SemicolonClassElement::getKind

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

SemicolonClassElement::getAModifier

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

SemicolonClassElement::getAnAncestor

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

SemicolonClassElement::getEnclosingFunction

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

SemicolonClassElement::getADescendant

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

SemicolonClassElement::getALeadingComment

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

SemicolonClassElement::getFile

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

SemicolonClassElement::getModifier

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

SemicolonClassElement::getText

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

SemicolonClassElement::getAComment

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

SemicolonClassElement::getADecorator

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