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

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

[nongnu] elpa/typescript-mode 32b8e1b6d0 134/222: Merge pull request #94


From: ELPA Syncer
Subject: [nongnu] elpa/typescript-mode 32b8e1b6d0 134/222: Merge pull request #94 from jack-williams/add-bigint
Date: Sun, 6 Feb 2022 16:59:27 -0500 (EST)

branch: elpa/typescript-mode
commit 32b8e1b6d09b6c3fc712c8b00f794591dfc7205a
Merge: fbaad515c9 0353bd72f8
Author: Jostein Kjønigsen <jostein@kjonigsen.net>
Commit: GitHub <noreply@github.com>

    Merge pull request #94 from jack-williams/add-bigint
    
    Add bigint
---
 typescript-mode.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/typescript-mode.el b/typescript-mode.el
index 6a08260bd3..6f54c7a594 100644
--- a/typescript-mode.el
+++ b/typescript-mode.el
@@ -263,7 +263,7 @@ Match group 1 is MUMBLE.")
 
 (defconst typescript--keyword-re
   (typescript--regexp-opt-symbol
-   '("abstract" "any" "as" "async" "await" "boolean" "break" "case" "catch" 
"class" "const"
+   '("abstract" "any" "as" "async" "await" "boolean" "bigint" "break" "case" 
"catch" "class" "const"
      "constructor" "continue" "declare" "default" "delete" "do" "else"
      "enum" "export" "extends" "extern" "false" "finally" "for"
      "function" "from" "get" "goto" "if" "implements" "import" "in" 
"instanceof"
@@ -276,7 +276,7 @@ Match group 1 is MUMBLE.")
 
 (defconst typescript--basic-type-re
   (typescript--regexp-opt-symbol
-   '("any" "bool" "boolean" "never" "number" "string" "unknown" "void"))
+   '("any" "bool" "boolean" "bigint" "never" "number" "string" "unknown" 
"void"))
   "Regular expression matching any predefined type in typescript.")
 
 (defconst typescript--constant-re



reply via email to

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