BinaryLogicalExpression

Inherit from BinaryExpression

Primary key: id: int

schema BinaryLogicalExpression extends BinaryExpression { @primary id: int } 

BinaryLogicalExpression::getFile

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

BinaryLogicalExpression::getALeadingComment

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

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

BinaryLogicalExpression::getATrailingComment

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

BinaryLogicalExpression::getEndLineNumber

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

BinaryLogicalExpression::getStartLineNumber

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

BinaryLogicalExpression::getStartColumnNumber

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

BinaryLogicalExpression::getAChild

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

BinaryLogicalExpression::getAnOperand

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

BinaryLogicalExpression::getChildCount

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

BinaryLogicalExpression::getChild

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

BinaryLogicalExpression::getRight

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

BinaryLogicalExpression::getRightOperand

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

BinaryLogicalExpression::getDecorator

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

BinaryLogicalExpression::getOperator

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

BinaryLogicalExpression::getKind

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

BinaryLogicalExpression::getAModifier

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

BinaryLogicalExpression::__all__

Data constraint method.

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

BinaryLogicalExpression::getLocation

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

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

BinaryLogicalExpression::getEndColumnNumber

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

BinaryLogicalExpression::getParent

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

BinaryLogicalExpression::getLastChild

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

BinaryLogicalExpression::getIndex

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

BinaryLogicalExpression::getRelativePath

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

BinaryLogicalExpression::getAnAncestorEnclosingFunction

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

BinaryLogicalExpression::getSymbol

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

BinaryLogicalExpression::getRoot

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

BinaryLogicalExpression::getParentOid

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

BinaryLogicalExpression::getEnclosingFunction

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

BinaryLogicalExpression::getADescendant

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

BinaryLogicalExpression::getADecorator

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

BinaryLogicalExpression::getAComment

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

BinaryLogicalExpression::getText

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

BinaryLogicalExpression::getModifier

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

BinaryLogicalExpression::getLeftOperand

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

BinaryLogicalExpression::getLeft

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

BinaryLogicalExpression::getAnAncestor

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