PageRegistrationExpression
/**
* A `Page` call expression used to register a page.
*/
Inherit from CallExpression
Primary key: id: int
schema PageRegistrationExpression extends CallExpression {
@primary id: int
}
PageRegistrationExpression::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.
*/
- Parameter
self
:PageRegistrationExpression
- Parameter
level
:int
- Return
Node
pub fn getAnAncestorByLevel(self: PageRegistrationExpression, level: int) -> Node;
PageRegistrationExpression::getEndLineNumber
- Parameter
self
:PageRegistrationExpression
- Return
int
pub fn getEndLineNumber(self: PageRegistrationExpression) -> int;
PageRegistrationExpression::getRoot
/**
* Gets the root top-level of this node.
*/
- Parameter
self
:PageRegistrationExpression
- Return
TopLevelDO
pub fn getRoot(self: PageRegistrationExpression) -> TopLevelDO;
PageRegistrationExpression::getEnclosingFunction
/**
* Gets the enclosing function of it
*/
- Parameter
self
:PageRegistrationExpression
- Return
FunctionLikeDeclaration
pub fn getEnclosingFunction(self: PageRegistrationExpression) -> FunctionLikeDeclaration;
PageRegistrationExpression::getADescendant
/**
* Gets a descendant of this node.
*/
- Parameter
self
:PageRegistrationExpression
- Return
*Node
pub fn getADescendant(self: PageRegistrationExpression) -> *Node;
PageRegistrationExpression::getArgument
/**
* Gets the `i`th argument of this call expression.
* index from 0
*/
- Parameter
self
:PageRegistrationExpression
- Parameter
i
:int
- Return
Expression
pub fn getArgument(self: PageRegistrationExpression, i: int) -> Expression;
PageRegistrationExpression::getParentOid
/**
* Gets the parent oid of this node.
*/
- Parameter
self
:PageRegistrationExpression
- Return
int
pub fn getParentOid(self: PageRegistrationExpression) -> int;
PageRegistrationExpression::getChild
/**
* Gets the `i`th child of this node.
*/
- Parameter
self
:PageRegistrationExpression
- Parameter
i
:int
- Return
Node
pub fn getChild(self: PageRegistrationExpression, i: int) -> Node;
PageRegistrationExpression::getCallee
/**
* Gets the callee of this call expression.
*/
- Parameter
self
:PageRegistrationExpression
- Return
FunctionLikeDeclaration
pub fn getCallee(self: PageRegistrationExpression) -> FunctionLikeDeclaration;
PageRegistrationExpression::getAChild
/**
* Gets a child node of this node.
*/
- Parameter
self
:PageRegistrationExpression
- Return
*Node
pub fn getAChild(self: PageRegistrationExpression) -> *Node;
PageRegistrationExpression::getStartColumnNumber
- Parameter
self
:PageRegistrationExpression
- Return
int
pub fn getStartColumnNumber(self: PageRegistrationExpression) -> int;
PageRegistrationExpression::getStartLineNumber
- Parameter
self
:PageRegistrationExpression
- Return
int
pub fn getStartLineNumber(self: PageRegistrationExpression) -> int;
PageRegistrationExpression::getATypeArgument
/**
* Gets a type argument of this call expression.
*/
- Parameter
self
:PageRegistrationExpression
- Return
*TypeNode
pub fn getATypeArgument(self: PageRegistrationExpression) -> *TypeNode;
PageRegistrationExpression::getAnAncestor
/**
* Gets an ancestor of this node.
*/
- Parameter
self
:PageRegistrationExpression
- Return
*Node
pub fn getAnAncestor(self: PageRegistrationExpression) -> *Node;
PageRegistrationExpression::isOptionalChaining
/**
* Determines whether this call expression is optional chaining, which means it has a `?.` token.
*/
- Parameter
self
:PageRegistrationExpression
- Return
bool
pub fn isOptionalChaining(self: PageRegistrationExpression) -> bool;
PageRegistrationExpression::getRelativePath
/**
* Gets the relative path of this node.
*/
- Parameter
self
:PageRegistrationExpression
- Return
string
pub fn getRelativePath(self: PageRegistrationExpression) -> string;
PageRegistrationExpression::getExpression
- Parameter
self
:PageRegistrationExpression
- Return
LeftHandSideExpression
pub fn getExpression(self: PageRegistrationExpression) -> LeftHandSideExpression;
PageRegistrationExpression::getParent
/**
* Gets the parent node of this node.
*/
- Parameter
self
:PageRegistrationExpression
- Return
Node
pub fn getParent(self: PageRegistrationExpression) -> Node;
PageRegistrationExpression::getTypeArgument
/**
* Gets the `i`th type argument of this call expression.
*/
- Parameter
self
:PageRegistrationExpression
- Parameter
i
:int
- Return
TypeNode
pub fn getTypeArgument(self: PageRegistrationExpression, i: int) -> TypeNode;
PageRegistrationExpression::getQuestionDotToken
/**
* Gets the `?.` token of this call expression.
*/
- Parameter
self
:PageRegistrationExpression
- Return
QuestionDotToken
pub fn getQuestionDotToken(self: PageRegistrationExpression) -> QuestionDotToken;
PageRegistrationExpression::getLocation
/**
* Gets the location of this node.
*/
- Parameter
self
:PageRegistrationExpression
- Return
Location
pub fn getLocation(self: PageRegistrationExpression) -> Location;
PageRegistrationExpression::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.
*/
- Parameter
self
:PageRegistrationExpression
- Parameter
level
:int
- Return
*Node
pub fn getADescendantByLevel(self: PageRegistrationExpression, level: int) -> *Node;
PageRegistrationExpression::__all__
Data constraint method.
- Parameter
db
:JavascriptDB
- Return
*PageRegistrationExpression
pub fn __all__(db: JavascriptDB) -> *PageRegistrationExpression;
PageRegistrationExpression::getLastChild
/**
* Gets the last child of this node parent.
*/
- Parameter
self
:PageRegistrationExpression
- Return
Node
pub fn getLastChild(self: PageRegistrationExpression) -> Node;
PageRegistrationExpression::hasCallee
/**
* Determine whether this CallExpression has a callee.
*/
- Parameter
self
:PageRegistrationExpression
- Return
bool
pub fn hasCallee(self: PageRegistrationExpression) -> bool;
PageRegistrationExpression::getSymbol
/**
* Gets the symbol associated with this node.
*/
- Parameter
self
:PageRegistrationExpression
- Return
Symbol
pub fn getSymbol(self: PageRegistrationExpression) -> Symbol;
PageRegistrationExpression::getAnAncestorEnclosingFunction
/**
* Gets an ancestor enclosing function of it
*/
- Parameter
self
:PageRegistrationExpression
- Return
*FunctionLikeDeclaration
pub fn getAnAncestorEnclosingFunction(self: PageRegistrationExpression) -> *FunctionLikeDeclaration;
PageRegistrationExpression::getIndex
- Parameter
self
:PageRegistrationExpression
- Return
int
pub fn getIndex(self: PageRegistrationExpression) -> int;
PageRegistrationExpression::getText
/**
* Gets the text of this node.
*/
- Parameter
self
:PageRegistrationExpression
- Return
string
pub fn getText(self: PageRegistrationExpression) -> string;
PageRegistrationExpression::getModifier
/**
* Gets the `i`th modifier.
*/
- Parameter
self
:PageRegistrationExpression
- Parameter
i
:int
- Return
Modifier
pub fn getModifier(self: PageRegistrationExpression, i: int) -> Modifier;
PageRegistrationExpression::getDecorator
/**
* Gets the `i`th decorator.
*/
- Parameter
self
:PageRegistrationExpression
- Parameter
i
:int
- Return
Decorator
pub fn getDecorator(self: PageRegistrationExpression, i: int) -> Decorator;
PageRegistrationExpression::getAnArgument
/**
* Gets an argument of this call expression.
*/
- Parameter
self
:PageRegistrationExpression
- Return
*Expression
pub fn getAnArgument(self: PageRegistrationExpression) -> *Expression;
PageRegistrationExpression::getChildCount
/**
* Gets the number of child nodes.
*/
- Parameter
self
:PageRegistrationExpression
- Return
int
pub fn getChildCount(self: PageRegistrationExpression) -> int;
PageRegistrationExpression::getAModifier
/**
* Gets a modifier.
*/
- Parameter
self
:PageRegistrationExpression
- Return
*Modifier
pub fn getAModifier(self: PageRegistrationExpression) -> *Modifier;
PageRegistrationExpression::getKind
/**
* Get the syntax kind of this node
*/
- Parameter
self
:PageRegistrationExpression
- Return
int
pub fn getKind(self: PageRegistrationExpression) -> int;
PageRegistrationExpression::getFile
/**
* Gets the file of this node.
*/
- Parameter
self
:PageRegistrationExpression
- Return
File
pub fn getFile(self: PageRegistrationExpression) -> File;
PageRegistrationExpression::getALeadingComment
/**
* Gets the leading comments of it
*/
- Parameter
self
:PageRegistrationExpression
- Return
*Comment
pub fn getALeadingComment(self: PageRegistrationExpression) -> *Comment;
PageRegistrationExpression::getAComment
/**
* Gets the comments related to it
*/
- Parameter
self
:PageRegistrationExpression
- Return
*Comment
pub fn getAComment(self: PageRegistrationExpression) -> *Comment;
PageRegistrationExpression::getADecorator
/**
* Gets a decorator.
*/
- Parameter
self
:PageRegistrationExpression
- Return
*Decorator
pub fn getADecorator(self: PageRegistrationExpression) -> *Decorator;
PageRegistrationExpression::getATrailingComment
/**
* Gets the trailing comments of it
*/
- Parameter
self
:PageRegistrationExpression
- Return
*Comment
pub fn getATrailingComment(self: PageRegistrationExpression) -> *Comment;
PageRegistrationExpression::getEndColumnNumber
- Parameter
self
:PageRegistrationExpression
- Return
int
pub fn getEndColumnNumber(self: PageRegistrationExpression) -> int;
PageRegistrationExpression::getArgumentCount
/**
* Gets the count of the arguments.
*/
- Parameter
self
:PageRegistrationExpression
- Return
int
pub fn getArgumentCount(self: PageRegistrationExpression) -> int;
PageRegistrationExpression::getTypeArgumentCount
/**
* Gets the count of the type arguments.
*/
- Parameter
self
:PageRegistrationExpression
- Return
int
pub fn getTypeArgumentCount(self: PageRegistrationExpression) -> int;