ReadonlyKeyword

/** * A `readonly` keyword. */ 

Inherit from Modifier

Primary key: id: int

schema ReadonlyKeyword extends Modifier { @primary id: int } 

ReadonlyKeyword::getADecorator

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

ReadonlyKeyword::getAComment

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

ReadonlyKeyword::getText

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

ReadonlyKeyword::getModifier

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

ReadonlyKeyword::getFile

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

ReadonlyKeyword::getALeadingComment

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

ReadonlyKeyword::getADescendant

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

ReadonlyKeyword::getEnclosingFunction

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

ReadonlyKeyword::getAnAncestor

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

ReadonlyKeyword::getDecorator

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

ReadonlyKeyword::getChildCount

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

ReadonlyKeyword::getEndColumnNumber

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

ReadonlyKeyword::getParent

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

ReadonlyKeyword::getLastChild

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

ReadonlyKeyword::getIndex

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

ReadonlyKeyword::__all__

Data constraint method.

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

ReadonlyKeyword::getLocation

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

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

ReadonlyKeyword::getRelativePath

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

ReadonlyKeyword::getAnAncestorEnclosingFunction

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

ReadonlyKeyword::getSymbol

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

ReadonlyKeyword::getRoot

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

ReadonlyKeyword::getParentOid

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

ReadonlyKeyword::getEndLineNumber

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

ReadonlyKeyword::getATrailingComment

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

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

ReadonlyKeyword::getChild

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

ReadonlyKeyword::getAChild

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

ReadonlyKeyword::getStartColumnNumber

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

ReadonlyKeyword::getStartLineNumber

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

ReadonlyKeyword::getAModifier

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

ReadonlyKeyword::getKind

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