Function: js-jsx--match-attribute-name
js-jsx--match-attribute-name is a byte-compiled function defined in
js.el.gz.
Signature
(js-jsx--match-attribute-name LIMIT)
Documentation
Match JSXAttribute names, until LIMIT.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/js.el.gz
(defun js-jsx--match-attribute-name (limit)
"Match JSXAttribute names, until LIMIT."
(when js-jsx-syntax
(let ((pos (next-single-char-property-change (point) 'js-jsx-attribute-name nil limit))
value)
(when (and pos (> pos (point)))
(goto-char pos)
(or (and (setq value (get-text-property pos 'js-jsx-attribute-name))
(progn (set-match-data value) t))
(js-jsx--match-attribute-name limit))))))