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

12 lines
235 B
C++

class Widget {
// ^ @type
int field;
// ^ @variable.other.member
bool method(int count) {
// ^ @function
// ^ @variable.parameter
return helper(count);
// ^ @function
}
};