Variable: antlr-font-lock-attribute-regexp
antlr-font-lock-attribute-regexp is a variable defined in
antlr-mode.el.gz.
Value
"\\(\\$\\sw+\\)"
Documentation
Regexp matching attributes within actions with special syntax highlighting.
If nil, there is no special syntax highlighting for attributes.
Otherwise, it should be a regular expression which must contain at least
one regexp group. The string matched by the first group is highlighted
with face antlr-attribute.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/antlr-mode.el.gz
(defvar antlr-font-lock-attribute-regexp "\\(\\$\\sw+\\)"
"Regexp matching attributes within actions with special syntax highlighting.
If nil, there is no special syntax highlighting for attributes.
Otherwise, it should be a regular expression which must contain at least
one regexp group. The string matched by the first group is highlighted
with face `antlr-attribute'.")