emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] master e48e862 055/110: Also parse async function statement in ex


From: Dmitry Gutov
Subject: [elpa] master e48e862 055/110: Also parse async function statement in export node
Date: Thu, 23 Jun 2016 01:12:57 +0000 (UTC)

branch: master
commit e48e862b0c7678138410fd42c24ccb92e56b20ae
Author: Carl Lei <address@hidden>
Commit: Carl Lei <address@hidden>

    Also parse async function statement in export node
    
    AsyncFunctionDeclaration is added as a
    HoistableDeclaration 
(http://tc39.github.io/ecmascript-asyncawait/#HoistableDeclaration),
    which shall be covered in productions "export Declaration" and "export
    default HoistableDeclaration".
---
 js2-mode.el     |   11 +++++++++++
 tests/parser.el |   13 +++++++++++++
 2 files changed, 24 insertions(+)

diff --git a/js2-mode.el b/js2-mode.el
index 2e5b210..eb805e7 100644
--- a/js2-mode.el
+++ b/js2-mode.el
@@ -8847,6 +8847,11 @@ invalid export statements."
      ((js2-match-token js2-DEFAULT)
       (setq default (cond ((js2-match-token js2-CLASS)
                            (js2-parse-class-stmt))
+                          ((js2-match-token js2-NAME)
+                           (if (js2-match-async-function)
+                               (js2-parse-async-function-stmt)
+                             (js2-unget-token)
+                             (js2-parse-expr)))
                           ((js2-match-token js2-FUNCTION)
                            (js2-parse-function-stmt))
                           (t (js2-parse-expr)))))
@@ -8854,6 +8859,12 @@ invalid export statements."
       (setq declaration (js2-parse-variables (js2-current-token-type) 
(js2-current-token-beg))))
      ((js2-match-token js2-CLASS)
       (setq declaration (js2-parse-class-stmt)))
+     ((js2-match-token js2-NAME)
+      (setq declaration
+            (if (js2-match-async-function)
+                (js2-parse-async-function-stmt)
+              (js2-unget-token)
+              (js2-parse-expr))))
      ((js2-match-token js2-FUNCTION)
       (setq declaration (js2-parse-function-stmt)))
      (t
diff --git a/tests/parser.el b/tests/parser.el
index 198e578..50cb521 100644
--- a/tests/parser.el
+++ b/tests/parser.el
@@ -790,6 +790,13 @@ the test."
   (js2-mode)
   (should (not (equal nil js2-parsed-warnings))))
 
+(js2-deftest export-default-async-function-no-semicolon "export default async 
function foo() {}"
+  (js2-mode)
+  (should (equal nil js2-parsed-warnings)))
+(js2-deftest export-async-function-no-semicolon "export async function foo() 
{}"
+  (js2-mode)
+  (should (equal nil js2-parsed-warnings)))
+
 (js2-deftest-parse parse-export-rexport "export * from 'other/lib';")
 (js2-deftest-parse parse-export-export-named-list "export {foo, bar as bang};")
 (js2-deftest-parse parse-re-export-named-list "export {foo, bar as bang} from 
'other/lib';")
@@ -805,6 +812,12 @@ the test."
 (js2-deftest-parse parse-export-class-declaration-no-semi
   "export class C {\n}")
 
+(js2-deftest-parse parse-export-async-function-allow-await
+  "export async function f() {\n  await f();\n}")
+
+(js2-deftest-parse parse-export-default-async-function-allow-await
+  "export default async function f() {\n  await f();\n}")
+
 ;;; Strings
 
 (js2-deftest-parse string-literal



reply via email to

[Prev in Thread] Current Thread [Next in Thread]