SuperExpression

/** * A super expression. */ 

Inherit from PrimaryExpression

Primary key: id: int

schema SuperExpression extends PrimaryExpression { @primary id: int } 

SuperExpression::getAnAncestor

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

SuperExpression::getStartLineNumber

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

SuperExpression::getChild

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

SuperExpression::getATrailingComment

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

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

SuperExpression::getEndLineNumber

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

SuperExpression::getADescendant

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

SuperExpression::getEnclosingFunction

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

SuperExpression::getParentOid

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

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

SuperExpression::getFile

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

SuperExpression::getALeadingComment

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

SuperExpression::__all__

Data constraint method.

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

SuperExpression::getLocation

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

SuperExpression::getModifier

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

SuperExpression::getText

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

SuperExpression::getStartColumnNumber

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

SuperExpression::getAChild

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

SuperExpression::getDecorator

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

SuperExpression::getChildCount

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

SuperExpression::getAModifier

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

SuperExpression::getKind

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

SuperExpression::getAComment

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

SuperExpression::getADecorator

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

SuperExpression::getLastChild

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

SuperExpression::getEndColumnNumber

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

SuperExpression::getParent

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

SuperExpression::getExpression

pub fn getExpression(self: SuperExpression) -> Expression; 

SuperExpression::getRelativePath

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

SuperExpression::getRoot

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

SuperExpression::getSymbol

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

SuperExpression::getAnAncestorEnclosingFunction

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

SuperExpression::getIndex

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