ParenthesizedExpression

/**
* A parenthesized expression.
*/

Inherit from PrimaryExpression

Primary key: id: int

schema ParenthesizedExpression extends PrimaryExpression {
  @primary id: int
}

ParenthesizedExpression::getAnAncestor

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

ParenthesizedExpression::getStartLineNumber

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

ParenthesizedExpression::getChild

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

ParenthesizedExpression::getATrailingComment

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

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

ParenthesizedExpression::getEndLineNumber

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

ParenthesizedExpression::getADescendant

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

ParenthesizedExpression::getEnclosingFunction

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

ParenthesizedExpression::getParentOid

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

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

ParenthesizedExpression::getFile

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

ParenthesizedExpression::getALeadingComment

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

ParenthesizedExpression::getAComment

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

ParenthesizedExpression::getADecorator

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

ParenthesizedExpression::__all__

Data constraint method.

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

ParenthesizedExpression::getLocation

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

ParenthesizedExpression::getModifier

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

ParenthesizedExpression::getText

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

ParenthesizedExpression::getDecorator

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

ParenthesizedExpression::getChildCount

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

ParenthesizedExpression::getAModifier

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

ParenthesizedExpression::getKind

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

ParenthesizedExpression::getAChild

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

ParenthesizedExpression::getStartColumnNumber

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

ParenthesizedExpression::getLastChild

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

ParenthesizedExpression::getEndColumnNumber

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

ParenthesizedExpression::getExpression

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

ParenthesizedExpression::getParent

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

ParenthesizedExpression::getRelativePath

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

ParenthesizedExpression::getRoot

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

ParenthesizedExpression::getSymbol

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

ParenthesizedExpression::getAnAncestorEnclosingFunction

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

ParenthesizedExpression::getIndex

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