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

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

Issue 10829172: Textmate dart bundle updates (more keywords and some reorg). (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 4 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
===================================================================
--- tools/utils/textmate/Dart.tmbundle/Syntaxes/Dart.textmate (revision 10238)
+++ tools/utils/textmate/Dart.tmbundle/Syntaxes/Dart.textmate (working copy)
@@ -75,6 +75,9 @@
{ name = 'keyword.control.new.dart';
match = '\b(new)\b';
},
+ { name = 'keyword.declaration.dart';
+ match = '\b(abstract|class|extends|external|factory|implements|interface|get|native|operator|set|typedef)\b';
+ },
{ name = 'keyword.operator.dart';
match = '\b(is\!?)\b';
},
@@ -106,10 +109,10 @@
match = ';';
},
{ name = 'storage.modifier.dart';
- match = '\b(static|final|native|abstract|const|class|interface|get|set|operator|external)\b';
+ match = '\b(static|final|const)\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