Variable: ruby-ts--class-or-module-regex

ruby-ts--class-or-module-regex is a variable defined in ruby-ts-mode.el.gz.

Value

"\\`\\(?:class\\|module\\|singleton_class\\)\\'"

Documentation

Regular expression that matches a class or module's node type.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/ruby-ts-mode.el.gz
(defconst ruby-ts--class-or-module-regex
  (rx string-start
      (or "class" "module" "singleton_class")
      string-end)
  "Regular expression that matches a class or module's node type.")