Function: js-jsx--at-enclosing-tag-child-p

js-jsx--at-enclosing-tag-child-p is a byte-compiled function defined in js.el.gz.

Signature

(js-jsx--at-enclosing-tag-child-p)

Documentation

Return t if point is at an enclosing tag’s child.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/js.el.gz
(defun js-jsx--at-enclosing-tag-child-p ()
  "Return t if point is at an enclosing tag’s child."
  (let ((pos (save-excursion (js-jsx--enclosing-tag-pos))))
    (and pos (>= (point) (nth 1 pos)))))