LogicalAndExpression

/** * A logical AND expression using `&&`. */ 

Inherit from BinaryLogicalExpression

Primary key: id: int

schema LogicalAndExpression extends BinaryLogicalExpression { @primary id: int } 

LogicalAndExpression::getAnAncestor

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

LogicalAndExpression::getLeft

/** * Get the left operand of this binary expression. An alias of `getLeftOperand`. */ 
pub fn getLeft(self: LogicalAndExpression) -> Expression; 

LogicalAndExpression::getLeftOperand

/** * Get the left operand of this binary expression. */ 
pub fn getLeftOperand(self: LogicalAndExpression) -> Expression; 

LogicalAndExpression::getModifier

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

LogicalAndExpression::getText

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

LogicalAndExpression::getAComment

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

LogicalAndExpression::getADecorator

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

LogicalAndExpression::getADescendant

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

LogicalAndExpression::getEnclosingFunction

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

LogicalAndExpression::getParentOid

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

LogicalAndExpression::getRoot

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

LogicalAndExpression::getSymbol

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

LogicalAndExpression::getAnAncestorEnclosingFunction

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

LogicalAndExpression::getRelativePath

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

LogicalAndExpression::getIndex

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

LogicalAndExpression::getChildCount

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

LogicalAndExpression::getStartLineNumber

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

LogicalAndExpression::getAnOperand

pub fn getAnOperand(self: LogicalAndExpression) -> *Expression; 

LogicalAndExpression::getAChild

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

LogicalAndExpression::getStartColumnNumber

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

LogicalAndExpression::getEndLineNumber

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

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

LogicalAndExpression::getATrailingComment

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

LogicalAndExpression::__all__

Data constraint method.

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

LogicalAndExpression::getLocation

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

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

LogicalAndExpression::getALeadingComment

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

LogicalAndExpression::getFile

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

LogicalAndExpression::getDecorator

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

LogicalAndExpression::getRightOperand

/** * Get the right operand of this binary expression. */ 
pub fn getRightOperand(self: LogicalAndExpression) -> Expression; 

LogicalAndExpression::getChild

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

LogicalAndExpression::getRight

/** * Get the right operand of this binary expression. An alias of `getRightOperand` */ 
pub fn getRight(self: LogicalAndExpression) -> Expression; 

LogicalAndExpression::getOperator

/** * Get the operator of this binary expression. */ 
pub fn getOperator(self: LogicalAndExpression) -> BinaryOperator; 

LogicalAndExpression::getAModifier

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

LogicalAndExpression::getKind

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

LogicalAndExpression::getEndColumnNumber

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

LogicalAndExpression::getParent

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

LogicalAndExpression::getLastChild

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