branch: elpa/typescript-mode
commit 32b8e1b6d09b6c3fc712c8b00f794591dfc7205a
Merge: fbaad515c9 0353bd72f8
Author: Jostein Kjønigsen <[email protected]>
Commit: GitHub <[email protected]>
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