FalseKeyword

/**
* A `false` keyword.
*/

Inherit from Token

Primary key: id: int

schema FalseKeyword extends Token {
  @primary id: int
}

FalseKeyword::getSymbol

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

FalseKeyword::getAnAncestorEnclosingFunction

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

FalseKeyword::getIndex

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

FalseKeyword::getParentOid

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

FalseKeyword::getRelativePath

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

FalseKeyword::getLastChild

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

FalseKeyword::getEndColumnNumber

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

FalseKeyword::getParent

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

FalseKeyword::getChildCount

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

FalseKeyword::getDecorator

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

FalseKeyword::getEndLineNumber

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

FalseKeyword::getATrailingComment

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

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

FalseKeyword::getChild

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

FalseKeyword::getRoot

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

FalseKeyword::getAChild

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

FalseKeyword::getStartColumnNumber

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

FalseKeyword::getStartLineNumber

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

FalseKeyword::__all__

Data constraint method.

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

FalseKeyword::getLocation

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

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

FalseKeyword::getKind

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

FalseKeyword::getAModifier

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

FalseKeyword::getAnAncestor

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

FalseKeyword::getEnclosingFunction

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

FalseKeyword::getADescendant

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

FalseKeyword::getALeadingComment

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

FalseKeyword::getFile

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

FalseKeyword::getModifier

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

FalseKeyword::getText

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

FalseKeyword::getAComment

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

FalseKeyword::getADecorator

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