mirror of
https://github.com/helix-editor/helix
synced 2026-07-27 11:10:52 +02:00
11 lines
170 B
Scala
11 lines
170 B
Scala
object O {
|
|
def m() = {
|
|
invokeit()
|
|
// ^ @function
|
|
obj.doThing()
|
|
// ^ @function.method
|
|
val x = obj.field
|
|
// ^ @variable.other.member
|
|
}
|
|
}
|