From: Tom Tromey Date: Fri, 24 Feb 2017 06:57:59 +0000 (-0700) Subject: add "async" and "await" keywords X-Git-Tag: emacs-26.0.90~720 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7b49bd44b70d0583e7e5989513b38e6f77e1c559;p=emacs.git add "async" and "await" keywords * lisp/progmodes/js.el (js--keyword-re): Add async, await. --- diff --git a/lisp/progmodes/js.el b/lisp/progmodes/js.el index b42b2bca822..6e313dc51b7 100644 --- a/lisp/progmodes/js.el +++ b/lisp/progmodes/js.el @@ -277,7 +277,7 @@ Match group 1 is the name of the macro.") (defconst js--keyword-re (js--regexp-opt-symbol - '("abstract" "break" "case" "catch" "class" "const" + '("abstract" "async" "await" "break" "case" "catch" "class" "const" "continue" "debugger" "default" "delete" "do" "else" "enum" "export" "extends" "final" "finally" "for" "function" "goto" "if" "implements" "import" "in"