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

Side by Side Diff: tests/language_strong/setter_override2_test.dart

Issue 2765693002: Update all tests (Closed)
Patch Set: Created 3 years, 9 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // Test that we do not report a compile-time error when an instance setter named 5 // Test that we do not report a compile-time error when an instance setter named
6 // foo= is declared in a class inheriting an instance method, field, or getter 6 // foo= is declared in a class inheriting an instance method, field, or getter
7 // named foo, or an instance setter named foo=. 7 // named foo, or an instance setter named foo=.
8 8
9 import "package:expect/expect.dart"; 9 import "package:expect/expect.dart";
10 import "package:meta/meta.dart" show virtual; 10 import "package:meta/meta.dart" show virtual;
11 11
12 class A { 12 class A {
13 @virtual var foo = 42; /// 00: ok 13 @virtual var foo = 42; //# 00: ok
14 get foo => 42; /// 01: ok 14 get foo => 42; //# 01: ok
15 foo() => 42; /// 02: ok 15 foo() => 42; //# 02: ok
16 set foo(value) { } /// 03: ok 16 set foo(value) { } //# 03: ok
17 } 17 }
18 18
19 class B extends A { 19 class B extends A {
20 var foo_; 20 var foo_;
21 set foo(value) { foo_ = value; } 21 set foo(value) { foo_ = value; }
22 } 22 }
23 23
24 main() { 24 main() {
25 var b = new B(); 25 var b = new B();
26 b.foo = 42; 26 b.foo = 42;
27 Expect.equals(42, b.foo_); 27 Expect.equals(42, b.foo_);
28 } 28 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698