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

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

Issue 2571363002: fixes #27385, implement virtual fields in DDC (Closed)
Patch Set: format Created 4 years 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 11
11 class A { 12 class A {
12 var foo = 42; /// 00: ok 13 @virtual var foo = 42; /// 00: ok
13 get foo => 42; /// 01: ok 14 get foo => 42; /// 01: ok
14 foo() => 42; /// 02: ok 15 foo() => 42; /// 02: ok
15 set foo(value) { } /// 03: ok 16 set foo(value) { } /// 03: ok
16 } 17 }
17 18
18 class B extends A { 19 class B extends A {
19 var foo_; 20 var foo_;
20 set foo(value) { foo_ = value; } 21 set foo(value) { foo_ = value; }
21 } 22 }
22 23
23 main() { 24 main() {
24 var b = new B(); 25 var b = new B();
25 b.foo = 42; 26 b.foo = 42;
26 Expect.equals(42, b.foo_); 27 Expect.equals(42, b.foo_);
27 } 28 }
OLDNEW
« no previous file with comments | « tests/language_strong/override_inheritance_field_test.dart ('k') | tests/language_strong/super_field_2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698