Function: bovine-grammar-VARIABLE-TAG

bovine-grammar-VARIABLE-TAG is a byte-compiled function defined in grammar.el.gz.

Signature

(bovine-grammar-VARIABLE-TAG NAME TYPE DEFAULT-VALUE &rest ATTRIBUTES)

Documentation

Expand call to VARIABLE-TAG grammar macro.

Return the form to create a semantic tag of class variable. See the function semantic-tag-new-variable for the meaning of arguments NAME, TYPE, DEFAULT-VALUE and ATTRIBUTES.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/bovine/grammar.el.gz
(defun bovine-grammar-VARIABLE-TAG (name type default-value &rest attributes)
  "Expand call to VARIABLE-TAG grammar macro.
Return the form to create a semantic tag of class variable.
See the function `semantic-tag-new-variable' for the meaning of
arguments NAME, TYPE, DEFAULT-VALUE and ATTRIBUTES."
  `(semantic-tag-new-variable ,name ,type ,default-value ,@attributes))