mirror of
https://github.com/helix-editor/helix
synced 2026-08-03 01:54:10 +02:00
12 lines
235 B
C++
12 lines
235 B
C++
class Widget {
|
|
// ^ @type
|
|
int field;
|
|
// ^ @variable.other.member
|
|
bool method(int count) {
|
|
// ^ @function
|
|
// ^ @variable.parameter
|
|
return helper(count);
|
|
// ^ @function
|
|
}
|
|
};
|