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

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

Issue 2765893003: Fix warnings_checker.dart handling of multitests (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
« no previous file with comments | « tests/language/setter_no_getter_test.dart ('k') | tests/language/setter_override_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 10
11 class A { 11 class A {
12 var foo = 42; // /// 00: ok 12 var foo = 42; // //# 00: ok
13 get foo => 42; // /// 01: ok 13 get foo => 42; // //# 01: ok
14 foo() => 42; // /// 02: ok 14 foo() => 42; // //# 02: ok
15 set foo(value) { } // /// 03: ok 15 set foo(value) { } // //# 03: ok
16 } 16 }
17 17
18 class B extends A { 18 class B extends A {
19 var foo_; 19 var foo_;
20 set foo(value) { foo_ = value; } 20 set foo(value) { foo_ = value; }
21 } 21 }
22 22
23 main() { 23 main() {
24 var b = new B(); 24 var b = new B();
25 b.foo = 42; 25 b.foo = 42;
26 Expect.equals(42, b.foo_); 26 Expect.equals(42, b.foo_);
27 } 27 }
OLDNEW
« no previous file with comments | « tests/language/setter_no_getter_test.dart ('k') | tests/language/setter_override_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698