branch: elpa/typescript-mode
commit 0353bd72f8894e7c8ffaa1c7127ba0a761dc0e7a
Author: Jack Williams <[email protected]>
Commit: Jack Williams <[email protected]>
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