Variable: js--possibly-braceless-keyword-re

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

Value

"\\_<\\(catch\\|do\\|e\\(?:ach\\|lse\\)\\|f\\(?:inally\\|or\\)\\|if\\|try\\|w\\(?:hile\\|ith\\)\\)\\_>"

Documentation

Regexp matching keywords optionally followed by an opening brace.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/js.el.gz
;;; Indentation

(defconst js--possibly-braceless-keyword-re
  (js--regexp-opt-symbol
   '("catch" "do" "else" "finally" "for" "if" "try" "while" "with"
     "each"))
  "Regexp matching keywords optionally followed by an opening brace.")