Function: js--js-handle-id--cmacro

js--js-handle-id--cmacro is a function defined in js.el.gz.

Signature

(js--js-handle-id--cmacro _CL-WHOLE-ARG CL-X)

Documentation

compiler-macro for inlining js--js-handle-id.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/js.el.gz
;; Closure converted to defun by helpful.
(defun js--js-handle-id--cmacro
    (_cl-whole-arg cl-x)
  "compiler-macro for inlining `js--js-handle-id'."
  (cl-block js--js-handle-id--cmacro
    (cl--defsubst-expand
     '(cl-x)
     '(cl-block js--js-handle-id
	(progn
	  (or
	   (js--js-handle-p cl-x)
	   (signal 'wrong-type-argument
		   (list 'js--js-handle cl-x)))
	  (aref cl-x 1)))
     nil nil nil cl-x)))