Function: profiler-calltree-children--cmacro
profiler-calltree-children--cmacro is a function defined in
profiler.el.gz.
Signature
(profiler-calltree-children--cmacro _CL-WHOLE-ARG CL-X)
Documentation
compiler-macro for inlining profiler-calltree-children.
Source Code
;; Defined in /usr/src/emacs/lisp/profiler.el.gz
;; Closure converted to defun by helpful.
(defun profiler-calltree-children--cmacro
(_cl-whole-arg cl-x)
"compiler-macro for inlining `profiler-calltree-children'."
(cl-block profiler-calltree-children--cmacro
(cl--defsubst-expand
'(cl-x)
'(cl-block profiler-calltree-children
(progn
(or
(profiler-calltree-p cl-x)
(signal 'wrong-type-argument
(list 'profiler-calltree cl-x)))
(aref cl-x 5)))
nil nil nil cl-x)))