2023-08-09 16:16:14 +00:00
|
|
|
interface IThing {
|
|
|
|
/// @return x a number
|
|
|
|
/// @return y another number
|
|
|
|
function value() external view returns (uint128 x, uint128 y);
|
|
|
|
}
|
|
|
|
|
|
|
|
contract Thing is IThing {
|
|
|
|
struct Value {
|
|
|
|
uint128 x;
|
|
|
|
uint128 y;
|
|
|
|
}
|
|
|
|
|
|
|
|
Value public override value;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----
|
|
|
|
// ----
|
|
|
|
// :IThing devdoc
|
|
|
|
// {
|
2023-08-09 17:33:35 +00:00
|
|
|
// "kind": "dev",
|
2023-08-09 16:16:14 +00:00
|
|
|
// "methods":
|
|
|
|
// {
|
|
|
|
// "value()":
|
|
|
|
// {
|
|
|
|
// "returns":
|
|
|
|
// {
|
|
|
|
// "x": "a number",
|
|
|
|
// "y": "another number"
|
|
|
|
// }
|
|
|
|
// }
|
2023-08-09 17:33:35 +00:00
|
|
|
// },
|
|
|
|
// "version": 1
|
2023-08-09 16:16:14 +00:00
|
|
|
// }
|
|
|
|
//
|
2023-08-21 10:32:33 +00:00
|
|
|
// :IThing userdoc
|
|
|
|
// {
|
|
|
|
// "kind": "user",
|
|
|
|
// "methods": {},
|
|
|
|
// "version": 1
|
|
|
|
// }
|
|
|
|
//
|
2023-08-09 16:16:14 +00:00
|
|
|
// :Thing devdoc
|
|
|
|
// {
|
2023-08-09 17:33:35 +00:00
|
|
|
// "kind": "dev",
|
2023-08-09 16:16:14 +00:00
|
|
|
// "methods": {},
|
|
|
|
// "stateVariables":
|
|
|
|
// {
|
|
|
|
// "value":
|
|
|
|
// {
|
|
|
|
// "returns":
|
|
|
|
// {
|
|
|
|
// "x": "a number",
|
|
|
|
// "y": "another number"
|
|
|
|
// }
|
|
|
|
// }
|
2023-08-09 17:33:35 +00:00
|
|
|
// },
|
|
|
|
// "version": 1
|
2023-08-09 16:16:14 +00:00
|
|
|
// }
|
2023-08-21 10:32:33 +00:00
|
|
|
//
|
|
|
|
// :Thing userdoc
|
|
|
|
// {
|
|
|
|
// "kind": "user",
|
|
|
|
// "methods": {},
|
|
|
|
// "version": 1
|
|
|
|
// }
|