Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/abstract/FlareFtsoExtern.sol
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ abstract contract FlareFtsoExtern is BaseRainlangExtern {
/// Create a 16-bit pointer array for the opcode function pointers. This is
/// relatively gas inefficent so it is only called during tests to cross
/// reference against the constant values that are used at runtime.
/// @return A packed 16-bit byte array of opcode function pointers, one per
/// supported opcode, in opcode-index order.
function buildOpcodeFunctionPointers() external pure returns (bytes memory) {
function(OperandV2, StackItem[] memory) internal view returns (StackItem[] memory)[] memory fs = new function(OperandV2, StackItem[] memory)
internal
Expand All @@ -67,6 +69,8 @@ abstract contract FlareFtsoExtern is BaseRainlangExtern {
/// Create a 16-bit pointer array for the integrity function pointers. This
/// is relatively gas inefficent so it is only called during tests to cross
/// reference against the constant values that are used at runtime.
/// @return A packed 16-bit byte array of integrity function pointers, one per
/// supported opcode, in opcode-index order.
function buildIntegrityFunctionPointers() external pure returns (bytes memory) {
function(OperandV2, uint256, uint256) internal pure returns (uint256, uint256)[] memory fs = new function(OperandV2, uint256, uint256)
internal
Expand Down
Loading