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

Side by Side Diff: tests/language_strong/nan_identical_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) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 // Test a new statement by itself. 4 // Test a new statement by itself.
5 // VMOptions=--optimization-counter-threshold=4 --no-use-osr 5 // VMOptions=--optimization-counter-threshold=4 --no-use-osr
6 6
7 import 'dart:typed_data'; 7 import 'dart:typed_data';
8 8
9 import "package:expect/expect.dart"; 9 import "package:expect/expect.dart";
10 10
(...skipping 30 matching lines...) Expand all
41 Expect.isFalse(checkIdentical(a, b)); 41 Expect.isFalse(checkIdentical(a, b));
42 Expect.isFalse(checkIdentical(-a, -b)); 42 Expect.isFalse(checkIdentical(-a, -b));
43 Expect.isFalse(checkIdentical(-a, b)); 43 Expect.isFalse(checkIdentical(-a, b));
44 Expect.isFalse(checkIdentical(a, -b)); 44 Expect.isFalse(checkIdentical(a, -b));
45 45
46 Expect.isTrue(checkIdentical(-(-a), a)); 46 Expect.isTrue(checkIdentical(-(-a), a));
47 Expect.isTrue(checkIdentical(-(-b), b)); 47 Expect.isTrue(checkIdentical(-(-b), b));
48 } 48 }
49 } 49 }
50 50
51 checkIdentical(a, b) => identical(a, b); 51 checkIdentical(a, b) => identical(a, b);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698