Function: js-jsx--looking-at-start-tag-p
js-jsx--looking-at-start-tag-p is a byte-compiled function defined in
js.el.gz.
Signature
(js-jsx--looking-at-start-tag-p)
Documentation
Non-nil if a JSXOpeningElement immediately follows point.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/js.el.gz
(defun js-jsx--looking-at-start-tag-p ()
"Non-nil if a JSXOpeningElement immediately follows point."
(let ((tag-beg (get-text-property (point) 'js-jsx-tag-beg)))
(and tag-beg (memq (car tag-beg) '(open self-closing)))))