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