Variable: js--unary-keyword-re

js--unary-keyword-re is a variable defined in js.el.gz.

Value

"\\_<\\(await\\|delete\\|typeof\\|\\(?:voi\\|yiel\\)d\\)\\_>"

Documentation

Regexp matching unary operator keywords.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/js.el.gz
(defconst js--unary-keyword-re
  (js--regexp-opt-symbol '("await" "delete" "typeof" "void" "yield"))
  "Regexp matching unary operator keywords.")