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

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

Issue 201613006: Introduces the new syntax for deferred loading (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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: sdk/lib/_internal/compiler/implementation/scanner/keyword.dart
diff --git a/sdk/lib/_internal/compiler/implementation/scanner/keyword.dart b/sdk/lib/_internal/compiler/implementation/scanner/keyword.dart
index 013e11c84b56d5be29e62689c85a07847bb9a250..4bf9695d4bb049cc5d256e332d8af60ede8a1f08 100644
--- a/sdk/lib/_internal/compiler/implementation/scanner/keyword.dart
+++ b/sdk/lib/_internal/compiler/implementation/scanner/keyword.dart
@@ -66,7 +66,8 @@ class Keyword {
const Keyword("of", isPseudo: true),
const Keyword("on", isPseudo: true),
const Keyword("show", isPseudo: true),
- const Keyword("source", isPseudo: true) ];
+ const Keyword("source", isPseudo: true),
+ const Keyword("deferred", isPseudo: true)];
final String syntax;
final bool isPseudo;

Powered by Google App Engine
This is Rietveld 408576698