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

Unified Diff: tests/language/vm/optimized_shl_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 side-by-side diff with in-line comments
Download patch
Index: tests/language/vm/optimized_shl_test.dart
diff --git a/tests/language/vm/optimized_shl_test.dart b/tests/language/vm/optimized_shl_test.dart
index 0134248b87beb5a5dcb87b9171801799e91bc108..9c1709bff43df4ab7c5e4de21c3ca020d2ecbcda 100644
--- a/tests/language/vm/optimized_shl_test.dart
+++ b/tests/language/vm/optimized_shl_test.dart
@@ -1,4 +1,3 @@
-
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
@@ -11,11 +10,10 @@ import "package:expect/expect.dart";
test_shl(w, x) {
x += 1;
- return w << x & 0xff ;
+ return w << x & 0xff;
}
main() {
for (var i = 0; i < 20; i++) test_shl(i, i % 10);
Expect.equals(4, test_shl(1, 1));
}
-

Powered by Google App Engine
This is Rietveld 408576698