IParserV1
Functions
parse
Parses a Rainlang string into an evaluable expression. MUST be
deterministic and MUST NOT have side effects. The only inputs are the
Rainlang string and the parse meta. MAY revert if the Rainlang string
is invalid. This function takes bytes
instead of string
to allow
for definitions of "string" other than UTF-8.
function parse(bytes calldata data) external pure returns (bytes calldata bytecode, uint256[] calldata constants);
Parameters
Name | Type | Description |
---|---|---|
data | bytes | The Rainlang bytes to parse. |
Returns
Name | Type | Description |
---|---|---|
bytecode | bytes | The expressions that can be evaluated. |
constants | uint256[] | The constants that can be referenced by sources. |