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

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

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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 // Check proper canonicalization (fields must be canonicalized as well). 5 // Check proper canonicalization (fields must be canonicalized as well).
6 6
7 import "package:expect/expect.dart"; 7 import "package:expect/expect.dart";
8 8
9
10 main() { 9 main() {
11 Expect.isFalse(identical(new Duration(days: 1), new Duration(days: 1))); 10 Expect.isFalse(identical(new Duration(days: 1), new Duration(days: 1)));
12 Expect.isTrue(identical(const Duration(days: 2), const Duration(days: 2))); 11 Expect.isTrue(identical(const Duration(days: 2), const Duration(days: 2)));
13 Expect.isTrue(identical(const B(3.0), const B(3.0))); 12 Expect.isTrue(identical(const B(3.0), const B(3.0)));
14 Expect.isTrue(identical(const F(main), const F(main))); 13 Expect.isTrue(identical(const F(main), const F(main)));
15 } 14 }
16 15
17
18 class A { 16 class A {
19 final a; 17 final a;
20 const A(v) : a = v + 3.4; 18 const A(v) : a = v + 3.4;
21 } 19 }
22 20
23 class B extends A { 21 class B extends A {
24 final b; 22 final b;
25 const B(v) : super(v), b = v + 1.0; 23 const B(v)
24 : super(v),
25 b = v + 1.0;
26 } 26 }
27 27
28 class F { 28 class F {
29 final f; 29 final f;
30 const F(v) : f = v; 30 const F(v) : f = v;
31 } 31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698