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

Unified Diff: tests/language_strong/mixin_and_extension_member_test.dart

Issue 2803673007: fix #29233, final fields can be settable in a mock (Closed)
Patch Set: fix Created 3 years, 8 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
Index: tests/language_strong/mixin_and_extension_member_test.dart
diff --git a/tests/language_strong/mixin_and_extension_member_test.dart b/tests/language_strong/mixin_and_extension_member_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..8565366165bf54bc95a8ee3ebf58d5d01db79a22
--- /dev/null
+++ b/tests/language_strong/mixin_and_extension_member_test.dart
@@ -0,0 +1,32 @@
+// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+import 'dart:collection';
+import 'package:expect/expect.dart';
+
+class OverrideFirstGetter {
+ get first => 9999;
+}
+
+class ListMock extends ListBase with OverrideFirstGetter {
+ final _list = [];
+ int get length => _list.length;
+ void set length(int x) {
+ _list.length = x;
+ }
+
+ operator [](x) => _list[x];
+ void operator []=(x, y) {
+ _list[x] = y;
+ }
+}
+
+// Regression test for
+// https://github.com/dart-lang/sdk/issues/29273#issuecomment-292384130
+main() {
+ List x = new ListMock();
+ x.add(42);
+ Expect.equals(x[0], 42);
+ Expect.equals(x.first, 9999);
+}

Powered by Google App Engine
This is Rietveld 408576698