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

Unified Diff: lib/compiler/implementation/dart_backend/backend.dart

Issue 10996062: Use static final empty Modifier instead of null. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Missing uses fixed. Created 8 years, 3 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/dart_backend/backend.dart
diff --git a/lib/compiler/implementation/dart_backend/backend.dart b/lib/compiler/implementation/dart_backend/backend.dart
index a55e65211c3d229b18e58f8b0ace31d2af8da887..8f23805ecb5f9870a4a72d8a1718c0aa22a9cadb 100644
--- a/lib/compiler/implementation/dart_backend/backend.dart
+++ b/lib/compiler/implementation/dart_backend/backend.dart
@@ -360,7 +360,7 @@ class DartBackend extends Backend {
endToken: new StringToken(CLOSE_PAREN_INFO, ')', -1),
nodes: const EmptyLink<Node>()),
new EmptyStatement(new StringToken(SEMICOLON_INFO, ';', -1)),
- null, null, null, null);
+ null, Modifiers.EMPTY, null, null);
classMembers[classElement].add(constructor);
elementAsts[constructor] =

Powered by Google App Engine
This is Rietveld 408576698