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

Unified Diff: compiler/javatests/com/google/dart/compiler/end2end/inc/someimpl.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.dart
diff --git a/compiler/javatests/com/google/dart/compiler/end2end/inc/someimpl.dart b/compiler/javatests/com/google/dart/compiler/end2end/inc/someimpl.dart
index 93c4038f83eeaad7649e9af10b76ef885df56f05..a333afd061012e8a367305217902744b12f246cc 100644
--- a/compiler/javatests/com/google/dart/compiler/end2end/inc/someimpl.dart
+++ b/compiler/javatests/com/google/dart/compiler/end2end/inc/someimpl.dart
@@ -5,6 +5,6 @@
class SomeClassImpl implements SomeClass {
String message_;
- SomeClassImpl() : message_ = "w00t!" { }
+ SomeClassImpl(arg) : message_ = "w00t!" { }
String get message() { return message_; }
}

Powered by Google App Engine
This is Rietveld 408576698