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

Unified Diff: tests/language/super_conditional_operator_test.dart

Issue 1062723002: Implement the new '?.' operator in analyzer. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Bump analyzer version. Created 5 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/super_conditional_operator_test.dart
diff --git a/tests/language/super_conditional_operator_test.dart b/tests/language/super_conditional_operator_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..83914ee1adb9271722578157bbf9504d734487e9
--- /dev/null
+++ b/tests/language/super_conditional_operator_test.dart
@@ -0,0 +1,44 @@
+// Copyright (c) 2015, 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.
+
+// Verify that the ?. operator cannot be used with "super".
+
+// SharedOptions=--enable-null-aware-operators
+
+class B {
+ B();
+ B.namedConstructor();
+ var field = 1;
+ method() => 1;
+}
+
+class C extends B {
+ C()
+ : super?.namedConstructor() /// 01: compile-time error
+ ;
+
+ test() {
+ super?.field = 1; /// 02: compile-time error
+ super?.field += 1; /// 03: compile-time error
+ super?.field ??= 1; /// 04: compile-time error
+ super?.field; /// 05: compile-time error
+ 1 * super?.field; /// 06: compile-time error
+ -super?.field; /// 07: compile-time error
+ ~super?.field; /// 08: compile-time error
+ !super?.field; /// 09: compile-time error
+ --super?.field; /// 10: compile-time error
+ ++super?.field; /// 11: compile-time error
+ super?.method(); /// 12: compile-time error
+ 1 * super?.method(); /// 13: compile-time error
+ -super?.method(); /// 14: compile-time error
+ ~super?.method(); /// 15: compile-time error
+ !super?.method(); /// 16: compile-time error
+ --super?.method(); /// 17: compile-time error
+ ++super?.method(); /// 18: compile-time error
+ }
+}
+
+main() {
+ new C().test();
+}

Powered by Google App Engine
This is Rietveld 408576698