mirror of
https://github.com/helix-editor/helix
synced 2026-07-28 23:33:35 +02:00
10 lines
198 B
C
10 lines
198 B
C
struct Point { int x; };
|
|
// ^ @type
|
|
// ^ @variable.other.member
|
|
int add(int a) {
|
|
// ^ @function
|
|
// ^ @variable.parameter
|
|
return helper(a);
|
|
// ^ @function
|
|
}
|