JsxAttributes

/** * A JSX attributes. */ 

Inherit from PrimaryExpression

Primary key: id: int

schema JsxAttributes extends PrimaryExpression { @primary id: int } 

JsxAttributes::getAnAncestor

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

JsxAttributes::getStartLineNumber

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

JsxAttributes::getChild

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

JsxAttributes::getATrailingComment

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

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

JsxAttributes::getEndLineNumber

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

JsxAttributes::getADescendant

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

JsxAttributes::getEnclosingFunction

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

JsxAttributes::getParentOid

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

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

JsxAttributes::getFile

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

JsxAttributes::getALeadingComment

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

JsxAttributes::__all__

Data constraint method.

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

JsxAttributes::getLocation

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

JsxAttributes::getModifier

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

JsxAttributes::getText

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

JsxAttributes::getStartColumnNumber

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

JsxAttributes::getAChild

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

JsxAttributes::getDecorator

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

JsxAttributes::getChildCount

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

JsxAttributes::getAModifier

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

JsxAttributes::getKind

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

JsxAttributes::getAComment

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

JsxAttributes::getADecorator

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

JsxAttributes::getLastChild

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

JsxAttributes::getEndColumnNumber

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

JsxAttributes::getParent

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

JsxAttributes::getExpression

pub fn getExpression(self: JsxAttributes) -> Expression; 

JsxAttributes::getRelativePath

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

JsxAttributes::getRoot

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

JsxAttributes::getSymbol

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

JsxAttributes::getAnAncestorEnclosingFunction

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

JsxAttributes::getIndex

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