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

Unified Diff: test/codegen/language/super_conditional_operator_test.dart

Issue 1316723003: implement null aware ops, fixes #249 (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 4 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: test/codegen/language/super_conditional_operator_test.dart
diff --git a/test/codegen/language/super_conditional_operator_test.dart b/test/codegen/language/super_conditional_operator_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..100a9a4c97925000d88e353decfde180b26f0334
--- /dev/null
+++ b/test/codegen/language/super_conditional_operator_test.dart
@@ -0,0 +1,42 @@
+// 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".
+
+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();
+}
« no previous file with comments | « test/codegen/language/nullaware_opt_test.dart ('k') | test/codegen/language/this_conditional_operator_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698