branch: elpa/typescript-mode
commit 9ad892fb2274decb637d12d81a8640d2c6cf11d3
Author: Miguel Branco <[email protected]>
Commit: Jostein Kjønigsen <[email protected]>
Add keyword 'object'
Add support for the 'object' keyword, introduced in TypeScript 2.2 as the
recommended type to describe objects.
---
typescript-mode.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/typescript-mode.el b/typescript-mode.el
index c8866839e5..8baad489d3 100644
--- a/typescript-mode.el
+++ b/typescript-mode.el
@@ -281,7 +281,7 @@ Match group 1 is the name of the macro.")
"constructor" "continue" "declare" "default" "delete" "do" "else"
"enum" "export" "extends" "extern" "false" "finally" "for"
"function" "from" "get" "goto" "if" "implements" "import" "in"
"instanceof"
- "interface" "keyof" "let" "module" "namespace" "new" "null" "number" "of"
+ "interface" "keyof" "let" "module" "namespace" "new" "null" "number"
"object" "of"
"private" "protected" "public" "readonly" "return" "set" "static" "string"
"super" "switch" "this" "throw" "true"
"try" "type" "typeof" "var" "void"