mirror of
https://github.com/helix-editor/helix
synced 2026-08-02 13:51:19 +02:00
10 lines
162 B
Ruby
10 lines
162 B
Ruby
class Box
|
|
# ^ @constructor
|
|
def method(count)
|
|
# ^ @function.method
|
|
# ^ @variable.parameter
|
|
helper(count)
|
|
# ^ @function.method
|
|
end
|
|
end
|