Optional
userFunction: numberOptional
raw: anyOptional
contextUnique identifier number for the node in the tree context
String representation of the operator, e.g. +
in 1 + 2
Optional
parentThe AST node that is containing current node
Optional
rawRaw original Solc AST node that was used to create current node.
Source mapping data corresponting to the AST node.
The value has format start:length:sourceIndex
:
start
is the starting index of the corresponding
code fragment substring in the source string;length
is the length of corresponding code fragment substring;sourceIndex
is the index number of the source unit (file),
that contains the AST node.To get parsed values, use sourceInfo
accessor.
Type string, e.g. uint256
Optional
userCustom defintion that is bound to operator and used instead of default logic.
Available since Solidity 0.8.19.
Left hand side expression, e.g. 1
in 1 + 2
Right hand side expression, e.g. 2
in 1 + 2
Returns current node AST context. Throws an error if no context is set.
Returns parsed parts of the src
property value
Type of the AST node
Attribute to access the defintion, bound to the operator.
Is undefined
when there is no definition bound to the operator.
Generated using TypeDoc
Current tree context of the node