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

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

[elpa] master ba14eb8 16/38: [feat] add jsdoc @abstract and @virtual emp


From: Dmitry Gutov
Subject: [elpa] master ba14eb8 16/38: [feat] add jsdoc @abstract and @virtual empty tags
Date: Wed, 28 Feb 2018 20:12:10 -0500 (EST)

branch: master
commit ba14eb87f5778d63dd8e462f62120c3f9714ada0
Author: felipe <address@hidden>
Commit: felipe <address@hidden>

    [feat] add jsdoc @abstract and @virtual empty tags
    
    http://usejsdoc.org/tags-abstract.html
---
 js2-mode.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/js2-mode.el b/js2-mode.el
index 74da82b..cdcf9e1 100644
--- a/js2-mode.el
+++ b/js2-mode.el
@@ -6969,7 +6969,8 @@ of a simple name.  Called before EXPR has a parent node."
 (defconst js2-jsdoc-empty-tag-regexp
   (concat "^\\s-*\\*+\\s-*\\(@\\(?:"
           (regexp-opt
-           '("addon"
+           '("abstract"
+             "addon"
              "author"
              "class"
              "const"
@@ -7007,6 +7008,7 @@ of a simple name.  Called before EXPR has a parent node."
              "public"
              "static"
              "supported"
+             "virtual"
              ))
           "\\)\\)\\s-*")
   "Matches empty jsdoc tags.")



reply via email to

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