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

Unified Diff: compiler/javatests/com/google/dart/compiler/end2end/inc/someimpl.bodychange.dart

Issue 8948001: Updates dartc to recognize 'default' keyword on interface and updated factory method syntax (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Got rid of some problems. Created 9 years 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: compiler/javatests/com/google/dart/compiler/end2end/inc/someimpl.bodychange.dart
diff --git a/compiler/javatests/com/google/dart/compiler/end2end/inc/someimpl.bodychange.dart b/compiler/javatests/com/google/dart/compiler/end2end/inc/someimpl.bodychange.dart
index ee72437285a30cfaf5d592b9df6b39df64a44d2e..ba8f451930e13c289d69ee4c602049754c58d745 100644
--- a/compiler/javatests/com/google/dart/compiler/end2end/inc/someimpl.bodychange.dart
+++ b/compiler/javatests/com/google/dart/compiler/end2end/inc/someimpl.bodychange.dart
@@ -5,6 +5,6 @@
class SomeClassImpl implements SomeClass {
String message_;
- SomeClassImpl() : this.message_ = "what?!" { }
+ SomeClassImpl(arg) : this.message_ = "what?!" { }
String get message() { return message_; }
}

Powered by Google App Engine
This is Rietveld 408576698