ArrayTypeNode

/**
* An array type node.
*/

Inherit from TypeNode

Primary key: id: int

schema ArrayTypeNode extends TypeNode {
  @primary id: int
}

ArrayTypeNode::getSymbol

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

ArrayTypeNode::getAnAncestorEnclosingFunction

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

ArrayTypeNode::getIndex

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

ArrayTypeNode::getParentOid

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

ArrayTypeNode::getRelativePath

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

ArrayTypeNode::getLastChild

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

ArrayTypeNode::getEndColumnNumber

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

ArrayTypeNode::getParent

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

ArrayTypeNode::getChildCount

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

ArrayTypeNode::getDecorator

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

ArrayTypeNode::getEndLineNumber

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

ArrayTypeNode::getATrailingComment

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

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

ArrayTypeNode::getChild

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

ArrayTypeNode::getRoot

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

ArrayTypeNode::getAChild

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

ArrayTypeNode::getStartColumnNumber

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

ArrayTypeNode::getStartLineNumber

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

ArrayTypeNode::__all__

Data constraint method.

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

ArrayTypeNode::getLocation

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

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

ArrayTypeNode::getKind

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

ArrayTypeNode::getAModifier

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

ArrayTypeNode::getAnAncestor

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

ArrayTypeNode::getEnclosingFunction

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

ArrayTypeNode::getADescendant

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

ArrayTypeNode::getALeadingComment

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

ArrayTypeNode::getFile

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

ArrayTypeNode::getModifier

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

ArrayTypeNode::getText

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

ArrayTypeNode::getAComment

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

ArrayTypeNode::getADecorator

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