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

Unified Diff: test/map_mixin_test.dart

Issue 2019423002: Make PbMapMixin implement Map<String, dynamic> (Closed) Base URL: https://github.com/dart-lang/dart-protobuf.git@master
Patch Set: nits Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pubspec.yaml ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/map_mixin_test.dart
diff --git a/test/map_mixin_test.dart b/test/map_mixin_test.dart
index b732a96236a557544320f944540c6bf3350dc2b7..ce0143ae8ea983d8d1ccd3d82b081a6614aba162 100644
--- a/test/map_mixin_test.dart
+++ b/test/map_mixin_test.dart
@@ -15,7 +15,7 @@ import 'package:test/test.dart' show test, expect, same, throws;
import 'mock_util.dart' show MockMessage, mockInfo;
// A minimal protobuf implementation compatible with PbMapMixin.
-class Rec extends MockMessage with MapMixin, PbMapMixin {
+class Rec extends MockMessage with MapMixin<String, dynamic>, PbMapMixin {
get info_ => _info;
static final _info = mockInfo("Rec", () => new Rec());
« no previous file with comments | « pubspec.yaml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698