Function: semantic-decoration-on-protected-members-p-default
semantic-decoration-on-protected-members-p-default is a byte-compiled
function defined in mode.el.gz.
Signature
(semantic-decoration-on-protected-members-p-default TAG)
Documentation
Return non-nil if TAG has PROTECTED access.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/decorate/mode.el.gz
(defun semantic-decoration-on-protected-members-p-default (tag)
"Return non-nil if TAG has PROTECTED access."
(and (member (semantic-tag-class tag) '(function variable))
(eq (semantic-tag-protection tag) 'protected)))