Function: antlr-beginning-of-body

antlr-beginning-of-body is an interactive and byte-compiled function defined in antlr-mode.el.gz.

Signature

(antlr-beginning-of-body)

Documentation

Move to the first element after the : of the current rule.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/antlr-mode.el.gz
(defun antlr-beginning-of-body ()
  "Move to the first element after the `:' of the current rule."
  (interactive "^")
  (antlr-end-of-body (if (eq antlr-tool-version 'antlr-v2)
                         "Class definitions and the file prelude are without `:'"
                       "Grammar and mode definitions are without `:'")))