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

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

Issue 11021008: Added 'dynamic' keyword, so that 'Dynamic' can be deprecated. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated tests status file with entered co19 issue. Created 8 years, 2 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 b5b69194ec42e1f77f11cbb4c2460a794469c20b..be4e6520bcfb259ef854a548340edce98bd7269b 100644
--- a/lib/compiler/implementation/scanner/keyword.dart
+++ b/lib/compiler/implementation/scanner/keyword.dart
@@ -42,6 +42,7 @@ class Keyword implements SourceString {
const Keyword("abstract", isBuiltIn: true),
const Keyword("as", info: AS_INFO, isBuiltIn: true),
const Keyword("assert", isBuiltIn: true),
+ const Keyword("dynamic", isBuiltIn: true),
const Keyword("external", isBuiltIn: true),
const Keyword("factory", isBuiltIn: true),
const Keyword("get", isBuiltIn: true),
@@ -63,7 +64,8 @@ class Keyword implements SourceString {
const Keyword("show", isPseudo: true),
const Keyword("source", isPseudo: true) ];
- static const DYNAMIC = const Keyword("Dynamic", isBuiltIn: true);
+ // TODO(aprelev@gmail.com): Remove deprecated Dynamic keyword support.
+ static const DYNAMIC_DEPRECATED = const Keyword("Dynamic", isBuiltIn: true);
final String syntax;
final bool isPseudo;

Powered by Google App Engine
This is Rietveld 408576698