mirror of
https://github.com/helix-editor/helix
synced 2026-08-01 01:16:39 +02:00
11 lines
186 B
Solidity
11 lines
186 B
Solidity
contract C {
|
|
function f() public {
|
|
obj.doThing();
|
|
// ^ @function.method
|
|
helper(1);
|
|
// ^ @function
|
|
uint x = obj.field;
|
|
// ^ @variable.other.member
|
|
}
|
|
}
|