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

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

[elpa] master 12586e5 098/110: Allow space before global declaration


From: Dmitry Gutov
Subject: [elpa] master 12586e5 098/110: Allow space before global declaration
Date: Thu, 23 Jun 2016 01:13:03 +0000 (UTC)

branch: master
commit 12586e57f6c2ee480a5fbb4beee3919aadf32ad3
Author: Brandon Olivier <address@hidden>
Commit: Brandon Olivier <address@hidden>

    Allow space before global declaration
---
 js2-mode.el      |    2 +-
 tests/externs.el |    7 +++++++
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/js2-mode.el b/js2-mode.el
index b2efce0..e804fbb 100644
--- a/js2-mode.el
+++ b/js2-mode.el
@@ -7264,7 +7264,7 @@ are ignored."
            when (and (eq 'block (js2-comment-node-format node))
                      (save-excursion
                        (goto-char (js2-node-abs-pos node))
-                       (looking-at "/\\*global ")))
+                       (looking-at "/\\* *global ")))
            append (js2-get-jslint-globals-in
                    (match-end 0)
                    (js2-node-abs-end node))))
diff --git a/tests/externs.el b/tests/externs.el
index 40957f6..09a60a9 100644
--- a/tests/externs.el
+++ b/tests/externs.el
@@ -42,6 +42,13 @@
     (should (equal (js2-get-jslint-globals)
                    '("quux" "tee" "$")))))
 
+(ert-deftest js2-finds-jslint-globals-with-space ()
+  (with-temp-buffer
+    (insert "/* global foo, bar:false, baz:true")
+    (js2-mode)
+    (should (equal (js2-get-jslint-globals)
+                   '("foo" "bar" "baz")))))
+
 ;;;TODO
 ;; ensure that any symbols bound with the import syntax are added to the 
extern list
 ;; ensure that any symbols bound with the export syntax exist in the file scope



reply via email to

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