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

Unified Diff: compiler/javatests/com/google/dart/compiler/end2end/inc/someimpl.change.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: Feedback from mmendez 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.change.dart
diff --git a/compiler/javatests/com/google/dart/compiler/end2end/inc/someimpl.change.dart b/compiler/javatests/com/google/dart/compiler/end2end/inc/someimpl.change.dart
index d0ba21f0d503ddcd998a01a57e3aea465e29db70..01126055923555a4b45d94156d0a60ae8e773055 100644
--- a/compiler/javatests/com/google/dart/compiler/end2end/inc/someimpl.change.dart
+++ b/compiler/javatests/com/google/dart/compiler/end2end/inc/someimpl.change.dart
@@ -5,7 +5,7 @@
class SomeClassImpl implements SomeClass {
String message_;
- SomeClassImpl() : this.message_ = "w00t!" { }
+ SomeClassImpl(arg) : this.message_ = "w00t!" { }
String get message() { return message_; }
newMethod() { }
}

Powered by Google App Engine
This is Rietveld 408576698