Variable: antlr-rule-postlude-skip-regexp
antlr-rule-postlude-skip-regexp is a variable defined in
antlr-mode.el.gz.
Value
"\\(c\\(?:atch\\|hannels\\)\\|exception\\|finally\\|import\\|options\\|scope\\|tokens\\)\\_>\\|@[A-Za-z\300-\326\330-\337_]\\(?:\\sw\\|\\s_\\)*\\(?:::[A-Za-z\300-\326\330-\337_]\\(?:\\sw\\|\\s_\\)*\\)?"
Documentation
Regexp matching things after ';' which still belong to the grammar rule.
See antlr-rule-postlude-skip-alist for details.
The value might be tool-dependent, see antlr-tool-version-variables.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/antlr-mode.el.gz
(defvar antlr-rule-postlude-skip-regexp
(eval-when-compile
(concat (regexp-opt (mapcar #'car antlr-rule-postlude-skip-alist--const) t)
"\\_>\\|@[A-Za-z\300-\326\330-\337_]\\(?:\\sw\\|\\s_\\)*\\(?:::[A-Za-z\300-\326\330-\337_]\\(?:\\sw\\|\\s_\\)*\\)?"))
"Regexp matching things after ';' which still belong to the grammar rule.
See `antlr-rule-postlude-skip-alist' for details.
The value might be tool-dependent, see `antlr-tool-version-variables'.")