Files
2026-06-20 14:49:53 +09:00

11 lines
186 B
Solidity

contract C {
function f() public {
obj.doThing();
// ^ @function.method
helper(1);
// ^ @function
uint x = obj.field;
// ^ @variable.other.member
}
}