ClassStaticBlockElement

/**
* A ClassStaticBlockElement
*/

Inherit from ClassElement

Primary key: id: int

schema ClassStaticBlockElement extends ClassElement {
  @primary id: int
}

ClassStaticBlockElement::getSymbol

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

ClassStaticBlockElement::getAnAncestorEnclosingFunction

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

ClassStaticBlockElement::getIndex

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

ClassStaticBlockElement::getParentOid

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

ClassStaticBlockElement::getRelativePath

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

ClassStaticBlockElement::getLastChild

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

ClassStaticBlockElement::getEndColumnNumber

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

ClassStaticBlockElement::getParent

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

ClassStaticBlockElement::getChildCount

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

ClassStaticBlockElement::getDecorator

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

ClassStaticBlockElement::getEndLineNumber

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

ClassStaticBlockElement::getATrailingComment

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

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

ClassStaticBlockElement::getChild

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

ClassStaticBlockElement::getRoot

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

ClassStaticBlockElement::getAChild

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

ClassStaticBlockElement::getStartColumnNumber

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

ClassStaticBlockElement::getStartLineNumber

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

ClassStaticBlockElement::__all__

Data constraint method.

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

ClassStaticBlockElement::getLocation

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

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

ClassStaticBlockElement::getKind

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

ClassStaticBlockElement::getAModifier

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

ClassStaticBlockElement::getAnAncestor

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

ClassStaticBlockElement::getEnclosingFunction

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

ClassStaticBlockElement::getADescendant

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

ClassStaticBlockElement::getALeadingComment

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

ClassStaticBlockElement::getFile

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

ClassStaticBlockElement::getModifier

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

ClassStaticBlockElement::getText

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

ClassStaticBlockElement::getAComment

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

ClassStaticBlockElement::getADecorator

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