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

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: Add support for mixins in protos. Created 4 years, 6 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 {
skybrian 2016/06/22 20:29:52 Can we put this file under "test" instead of in "l
frederikmutzel 2016/06/23 12:30:16 I'd really prefer to use a package import here. Re
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698