branch: elpa/dart-mode
commit 31861e81fdc21cb562942bf3a69f6c5aec2050ec
Author: Erick Navarro <[email protected]>
Commit: Erick Navarro <[email protected]>
Add mixin keyword
mixin is not part of ECMA 408 but it's used in dart.
---
dart-mode.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/dart-mode.el b/dart-mode.el
index a75b1fc..596d2d2 100644
--- a/dart-mode.el
+++ b/dart-mode.el
@@ -398,7 +398,8 @@ indentation levels from right to left."
'("assert" "break" "case" "catch" "class" "const" "continue"
"default" "do" "else" "enum" "extends" "final" "finally" "for"
"if" "in" "is" "new" "rethrow" "return" "super" "switch" "this"
- "throw" "try" "var" "while" "with"))
+ "throw" "try" "var" "while" "with" "mixin"))
+;; mixin is not part of ECMA 408 but it's used in dart.
(defvar dart--types '("bool" "double" "dynamic" "int" "num" "void"))