Variable: ruby-ts--method-regex
ruby-ts--method-regex is a variable defined in ruby-ts-mode.el.gz.
Value
"\\`\\(?:\\(?:singleton_\\)?method\\)\\'"
Documentation
Regular expression matching methods and singleton methods.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/ruby-ts-mode.el.gz
(defconst ruby-ts--method-regex
(rx string-start
(or "method" "singleton_method")
string-end)
"Regular expression matching methods and singleton methods.")