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

Unified Diff: lib/compiler/implementation/scanner/keyword.dart

Issue 10697096: Add "external" prefix to methods and constructors. (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
Index: lib/compiler/implementation/scanner/keyword.dart
diff --git a/lib/compiler/implementation/scanner/keyword.dart b/lib/compiler/implementation/scanner/keyword.dart
index f5153c84fb32a726e689a633c5468eb49a205215..395ea499435bba955a069074ec11e3e5271567b4 100644
--- a/lib/compiler/implementation/scanner/keyword.dart
+++ b/lib/compiler/implementation/scanner/keyword.dart
@@ -40,6 +40,7 @@ class Keyword implements SourceString {
static final Keyword ABSTRACT = const Keyword("abstract", isPseudo: true);
static final Keyword AS = const Keyword("as", info: AS_INFO, isPseudo: true);
static final Keyword ASSERT = const Keyword("assert", isPseudo: true);
+ static final Keyword EXTERNAL = const Keyword("external", isPseudo: true);
static final Keyword FACTORY = const Keyword("factory", isPseudo: true);
static final Keyword GET = const Keyword("get", isPseudo: true);
static final Keyword IMPLEMENTS = const Keyword("implements", isPseudo: true);
@@ -87,6 +88,7 @@ class Keyword implements SourceString {
ASSERT,
CLASS,
EXTENDS,
+ EXTERNAL,
FACTORY,
GET,
IMPLEMENTS,

Powered by Google App Engine
This is Rietveld 408576698