branch: elpa/typescript-mode
commit 39827549ef8dbf46ec0bbac7cb5b34e99278e549
Merge: b6e993513c 438fc968bf
Author: Anantha Kumaran <[email protected]>
Commit: GitHub <[email protected]>
Merge pull request #13 from wingyplus/highlight-set-and-get-keyword
Highlight set and get keyword
---
typescript-mode.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/typescript-mode.el b/typescript-mode.el
index c4c45696d6..b117a2ce65 100644
--- a/typescript-mode.el
+++ b/typescript-mode.el
@@ -279,9 +279,9 @@ Match group 1 is the name of the macro.")
'("abstract" "any" "async" "await" "bool" "boolean" "break" "case" "catch"
"class" "const"
"constructor" "continue" "declare" "default" "delete" "do" "else"
"enum" "export" "extends" "extern" "false" "finally" "for"
- "function" "goto" "if" "implements" "import" "in" "instanceof"
+ "function" "get" "goto" "if" "implements" "import" "in" "instanceof"
"interface" "let" "module" "namespace" "new" "null" "number"
- "private" "protected" "public" "return" "static" "string"
+ "private" "protected" "public" "return" "set" "static" "string"
"super" "switch" "this" "throw" "true"
"try" "type" "typeof" "var" "void"
"while" ))