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

Unified Diff: tests/language/getter_no_setter_test.dart

Issue 10689083: Compile an instance setter call when a static getter is declared, but no field (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/parser.cc ('k') | tests/language/language.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/getter_no_setter_test.dart
===================================================================
--- tests/language/getter_no_setter_test.dart (revision 0)
+++ tests/language/getter_no_setter_test.dart (revision 0)
@@ -0,0 +1,49 @@
+// Copyright (c) 2012, 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.
+// Verifies behavior with a static getter, but no field and no setter.
+
+class Example {
+ static int _var = 1;
+ static int get nextVar() => _var++;
+ Example() {
+ {
+ bool flag_exception = false;
+ try {
+ nextVar = 1; // Equivalent to this.nextVar = 1.
+ } catch (var excpt) {
+ flag_exception = true;
+ }
+ Expect.isTrue(flag_exception);
+ }
+ {
+ bool flag_exception = false;
+ try {
+ this.nextVar = 1; /// 00: static type warning
+ } catch (var excpt) {
+ flag_exception = true;
+ }
+ Expect.isTrue(flag_exception); /// 00: continued
+ }
+ }
+ static test() {
+ nextVar = 0; /// 01: compile-time error
+ this.nextVar = 0; /// 02: compile-time error
+ }
+}
+
+class Example1 {
+ Example1(int i) { }
+}
+
+class Example2 extends Example1 {
+ static int _var = 1;
+ static int get nextVar() => _var++;
+ Example2() : super(nextVar) { } // No 'this' in scope.
+}
+
+void main() {
+ Example x = new Example();
+ Example.test();
+ Example2 x2 = new Example2();
+}
« no previous file with comments | « runtime/vm/parser.cc ('k') | tests/language/language.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698