Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(469)

Unified Diff: tools/utils/textmate/Dart.tmbundle/Syntaxes/Dart.textmate

Issue 10831139: Added support for Added support for keywords 'implements', 'extends', 'factory', and 'String' in th… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tools/utils/textmate/Dart.tmbundle/Syntaxes/Dart.tmLanguage » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/utils/textmate/Dart.tmbundle/Syntaxes/Dart.textmate
diff --git a/tools/utils/textmate/Dart.tmbundle/Syntaxes/Dart.textmate b/tools/utils/textmate/Dart.tmbundle/Syntaxes/Dart.textmate
index 1b121f71889c09c86f2d13be938fc4c0d412b322..09488527aeaf2341c98abaf6a2cf0d484b7a0c06 100644
--- a/tools/utils/textmate/Dart.tmbundle/Syntaxes/Dart.textmate
+++ b/tools/utils/textmate/Dart.tmbundle/Syntaxes/Dart.textmate
@@ -106,10 +106,10 @@
match = ';';
},
{ name = 'storage.modifier.dart';
- match = '\b(static|final|native|abstract|const|class|interface|get|set|operator|external)\b';
+ match = '\b(static|final|native|abstract|const|class|interface|get|set|operator|external|implements|extends|factory)\b';
},
{ name = 'storage.type.primitive.dart';
- match = '\b(?:void|bool|num|int|double|Dynamic|var)\b';
+ match = '\b(?:void|bool|num|int|double|Dynamic|var|String)\b';
},
);
};
« no previous file with comments | « no previous file | tools/utils/textmate/Dart.tmbundle/Syntaxes/Dart.tmLanguage » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698