IParserV1

Git Source

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

NameTypeDescription
databytesThe Rainlang bytes to parse.

Returns

NameTypeDescription
bytecodebytesThe expressions that can be evaluated.
constantsuint256[]The constants that can be referenced by sources.