JsxAttribute

/** * A JSX attribute. */ 

Inherit from Node

Primary key: id: int

schema JsxAttribute extends Node { @primary id: int } 

JsxAttribute::getRoot

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

JsxAttribute::getAnAncestor

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

JsxAttribute::getChild

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

JsxAttribute::getChildCount

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

JsxAttribute::getAChild

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

JsxAttribute::getStartColumnNumber

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

JsxAttribute::getAnAncestorEnclosingFunction

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

JsxAttribute::getSymbol

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

JsxAttribute::getIndex

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

JsxAttribute::getDecorator

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

JsxAttribute::getATrailingComment

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

JsxAttribute::getEndLineNumber

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

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

JsxAttribute::getADecorator

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

JsxAttribute::getAComment

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

JsxAttribute::getALeadingComment

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

JsxAttribute::getFile

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

JsxAttribute::getParent

pub fn getParent(self: JsxAttribute) -> JsxAttributes; 

JsxAttribute::getEndColumnNumber

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

JsxAttribute::getLastChild

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

JsxAttribute::__all__

Data constraint method.

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

JsxAttribute::getLocation

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

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

JsxAttribute::getInitializer

pub fn getInitializer(self: JsxAttribute) -> JsxAttributeInitializer; 

JsxAttribute::getText

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

JsxAttribute::getEnclosingFunction

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

JsxAttribute::getADescendant

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

JsxAttribute::getName

pub fn getName(self: JsxAttribute) -> Identifier; 

JsxAttribute::getRelativePath

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

JsxAttribute::getModifier

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

JsxAttribute::getStartLineNumber

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

JsxAttribute::getAModifier

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

JsxAttribute::getKind

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

JsxAttribute::getParentOid

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