Arguments

/**
* @brief The arguments for a function.
*/

Inherit from ArgumentsDO

Primary key: element_oid: int

schema Arguments extends ArgumentsDO {
  @primary element_oid: int,
  parent_oid: int,
  printable_text: string
}

Arguments::getParentOid

/**
* @brief gets the parent oid of this element.
* @return int
*/
pub fn getParentOid(self: Arguments) -> int;

Arguments::getPrintableText

/**
* @brief gets the printable text of this element.
* @return string
*/
pub fn getPrintableText(self: Arguments) -> string;

Arguments::getParent

/**
* @brief gets the parent element of the element
* @return CombineElement 
*/
pub fn getParent(self: Arguments) -> CombineElement;

Arguments::getArgByIndex

/**
* @brief gets the arg in the arguments by index, if any.
* @return Arg
*/
pub fn getArgByIndex(self: Arguments, i: int) -> Arg;

Arguments::__all__

Data constraint method.

pub fn __all__(db: PythonDB) -> *Arguments;

Arguments::getAnAncestor

/**
* @brief gets an ancestor of the element.
* @return CombineElement 
*/
pub fn getAnAncestor(self: Arguments) -> *CombineElement;

Arguments::getLocation

/**
* @brief gets the location for the element's parent since this type has no location info.
* @return Location
*/
pub fn getLocation(self: Arguments) -> Location;