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

Side by Side Diff: lib/testing/mixins.dart

Issue 2086253002: Allow application of external mixins to generated dart protos. (Closed) Base URL: https://github.com/dart-lang/dart-protoc-plugin.git@master
Patch Set: Update from code review. Created 4 years, 5 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 unified diff | Download patch
OLDNEW
(Empty)
1 abstract class Mixin1 {
2 String get overriddenString => "mixin1";
3
4 String get interfaceString;
5 set interfaceString(String string);
6 bool hasInterfaceString();
7 }
8
9 abstract class Mixin2 {
10 String get overriddenString => "mixin2";
11
12 bool hasOverriddenHasMethod() => false;
13 }
14
15 abstract class Mixin3 {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698