InExpression
/**
* An `in` expression.
*/
Inherit from RelationalExpression
Primary key: id: int
schema InExpression extends RelationalExpression {
@primary id: int
}
InExpression::getAnAncestor
/**
* Gets an ancestor of this node.
*/
- Parameter
self
:InExpression
- Return
*Node
pub fn getAnAncestor(self: InExpression) -> *Node;
InExpression::getLeft
/**
* Get the left operand of this binary expression. An alias of `getLeftOperand`.
*/
- Parameter
self
:InExpression
- Return
Expression
pub fn getLeft(self: InExpression) -> Expression;
InExpression::getLeftOperand
/**
* Get the left operand of this binary expression.
*/
- Parameter
self
:InExpression
- Return
Expression
pub fn getLeftOperand(self: InExpression) -> Expression;
InExpression::getModifier
/**
* Gets the `i`th modifier.
*/
- Parameter
self
:InExpression
- Parameter
i
:int
- Return
Modifier
pub fn getModifier(self: InExpression, i: int) -> Modifier;
InExpression::getText
/**
* Gets the text of this node.
*/
- Parameter
self
:InExpression
- Return
string
pub fn getText(self: InExpression) -> string;
InExpression::getAComment
/**
* Gets the comments related to it
*/
- Parameter
self
:InExpression
- Return
*Comment
pub fn getAComment(self: InExpression) -> *Comment;
InExpression::getADecorator
/**
* Gets a decorator.
*/
- Parameter
self
:InExpression
- Return
*Decorator
pub fn getADecorator(self: InExpression) -> *Decorator;
InExpression::getADescendant
/**
* Gets a descendant of this node.
*/
- Parameter
self
:InExpression
- Return
*Node
pub fn getADescendant(self: InExpression) -> *Node;
InExpression::getEnclosingFunction
/**
* Gets the enclosing function of it
*/
- Parameter
self
:InExpression
- Return
FunctionLikeDeclaration
pub fn getEnclosingFunction(self: InExpression) -> FunctionLikeDeclaration;
InExpression::getParentOid
/**
* Gets the parent oid of this node.
*/
- Parameter
self
:InExpression
- Return
int
pub fn getParentOid(self: InExpression) -> int;
InExpression::getRoot
/**
* Gets the root top-level of this node.
*/
- Parameter
self
:InExpression
- Return
TopLevelDO
pub fn getRoot(self: InExpression) -> TopLevelDO;
InExpression::getSymbol
/**
* Gets the symbol associated with this node.
*/
- Parameter
self
:InExpression
- Return
Symbol
pub fn getSymbol(self: InExpression) -> Symbol;
InExpression::getAnAncestorEnclosingFunction
/**
* Gets an ancestor enclosing function of it
*/
- Parameter
self
:InExpression
- Return
*FunctionLikeDeclaration
pub fn getAnAncestorEnclosingFunction(self: InExpression) -> *FunctionLikeDeclaration;
InExpression::getRelativePath
/**
* Gets the relative path of this node.
*/
- Parameter
self
:InExpression
- Return
string
pub fn getRelativePath(self: InExpression) -> string;
InExpression::getIndex
- Parameter
self
:InExpression
- Return
int
pub fn getIndex(self: InExpression) -> int;
InExpression::getChildCount
/**
* Gets the number of child nodes.
*/
- Parameter
self
:InExpression
- Return
int
pub fn getChildCount(self: InExpression) -> int;
InExpression::getStartLineNumber
- Parameter
self
:InExpression
- Return
int
pub fn getStartLineNumber(self: InExpression) -> int;
InExpression::getAnOperand
- Parameter
self
:InExpression
- Return
*Expression
pub fn getAnOperand(self: InExpression) -> *Expression;
InExpression::getAChild
/**
* Gets a child node of this node.
*/
- Parameter
self
:InExpression
- Return
*Node
pub fn getAChild(self: InExpression) -> *Node;
InExpression::getStartColumnNumber
- Parameter
self
:InExpression
- Return
int
pub fn getStartColumnNumber(self: InExpression) -> int;
InExpression::getEndLineNumber
- Parameter
self
:InExpression
- Return
int
pub fn getEndLineNumber(self: InExpression) -> int;
InExpression::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
:InExpression
- Parameter
level
:int
- Return
Node
pub fn getAnAncestorByLevel(self: InExpression, level: int) -> Node;
InExpression::getATrailingComment
/**
* Gets the trailing comments of it
*/
- Parameter
self
:InExpression
- Return
*Comment
pub fn getATrailingComment(self: InExpression) -> *Comment;
InExpression::__all__
Data constraint method.
- Parameter
db
:JavascriptDB
- Return
*InExpression
pub fn __all__(db: JavascriptDB) -> *InExpression;
InExpression::getLocation
/**
* Gets the location of this node.
*/
- Parameter
self
:InExpression
- Return
Location
pub fn getLocation(self: InExpression) -> Location;
InExpression::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
:InExpression
- Parameter
level
:int
- Return
*Node
pub fn getADescendantByLevel(self: InExpression, level: int) -> *Node;
InExpression::getALeadingComment
/**
* Gets the leading comments of it
*/
- Parameter
self
:InExpression
- Return
*Comment
pub fn getALeadingComment(self: InExpression) -> *Comment;
InExpression::getFile
/**
* Gets the file of this node.
*/
- Parameter
self
:InExpression
- Return
File
pub fn getFile(self: InExpression) -> File;
InExpression::getDecorator
/**
* Gets the `i`th decorator.
*/
- Parameter
self
:InExpression
- Parameter
i
:int
- Return
Decorator
pub fn getDecorator(self: InExpression, i: int) -> Decorator;
InExpression::getRightOperand
/**
* Get the right operand of this binary expression.
*/
- Parameter
self
:InExpression
- Return
Expression
pub fn getRightOperand(self: InExpression) -> Expression;
InExpression::getChild
/**
* Gets the `i`th child of this node.
*/
- Parameter
self
:InExpression
- Parameter
i
:int
- Return
Node
pub fn getChild(self: InExpression, i: int) -> Node;
InExpression::getRight
/**
* Get the right operand of this binary expression. An alias of `getRightOperand`
*/
- Parameter
self
:InExpression
- Return
Expression
pub fn getRight(self: InExpression) -> Expression;
InExpression::getOperator
/**
* Get the operator of this binary expression.
*/
- Parameter
self
:InExpression
- Return
BinaryOperator
pub fn getOperator(self: InExpression) -> BinaryOperator;
InExpression::getAModifier
/**
* Gets a modifier.
*/
- Parameter
self
:InExpression
- Return
*Modifier
pub fn getAModifier(self: InExpression) -> *Modifier;
InExpression::getKind
/**
* Get the syntax kind of this node
*/
- Parameter
self
:InExpression
- Return
int
pub fn getKind(self: InExpression) -> int;
InExpression::getEndColumnNumber
- Parameter
self
:InExpression
- Return
int
pub fn getEndColumnNumber(self: InExpression) -> int;
InExpression::getParent
/**
* Gets the parent node of this node.
*/
- Parameter
self
:InExpression
- Return
Node
pub fn getParent(self: InExpression) -> Node;
InExpression::getLastChild
/**
* Gets the last child of this node parent.
*/
- Parameter
self
:InExpression
- Return
Node
pub fn getLastChild(self: InExpression) -> Node;