Variable: js--line-terminating-arrow-re

js--line-terminating-arrow-re is a variable defined in js.el.gz.

Value

"=>\\s-*\\(/[/*]\\|$\\)"

Documentation

Regexp matching the last "=>" (arrow) token on a line.

Whitespace and comments around the arrow are ignored.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/js.el.gz
(defconst js--line-terminating-arrow-re "=>\\s-*\\(/[/*]\\|$\\)"
  "Regexp matching the last \"=>\" (arrow) token on a line.
Whitespace and comments around the arrow are ignored.")