Variable: smart-javascript-keywords
smart-javascript-keywords is a variable defined in hmouse-tag.el.
Value
("break" "case" "catch" "class" "const" "continue" "debugger" "default" "delete" "do" "else" "extends" "export" "false" "finally" "for" "function" "if" "in" "instanceof" "import" "let" "new" "null" "return" "super" "switch" "this" "throw" "true" "try" "typeof" "var" "void" "while" "with" "yield")
Documentation
Sorted list of JavaScript keywords, all in lowercase.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hmouse-tag.el
(defconst smart-javascript-keywords
'("break" "case" "catch" "class" "const" "continue" "debugger"
"default" "delete" "do" "else" "extends" "export" "false" "finally"
"for" "function" "if" "in" "instanceof" "import" "let" "new" "null"
"return" "super" "switch" "this" "throw" "true" "try" "typeof" "var"
"void" "while" "with" "yield")
"Sorted list of JavaScript keywords, all in lowercase.")