Files
helix/tests/query/highlights/scala/methods.scala
2026-06-20 14:49:53 +09:00

11 lines
170 B
Scala

object O {
def m() = {
invokeit()
// ^ @function
obj.doThing()
// ^ @function.method
val x = obj.field
// ^ @variable.other.member
}
}