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

Unified Diff: tests/language/vm/uint32_shift_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/uint32_shift_test.dart
diff --git a/tests/language/vm/uint32_shift_test.dart b/tests/language/vm/uint32_shift_test.dart
index 3f9f7e216469eab9c390331098deca0f8bf57cc7..f20210a7cc93496635cfc65b24b00196300ce656 100644
--- a/tests/language/vm/uint32_shift_test.dart
+++ b/tests/language/vm/uint32_shift_test.dart
@@ -6,11 +6,15 @@
import 'package:expect/expect.dart';
class Good {
- use(x) { return x & 0x1; }
+ use(x) {
+ return x & 0x1;
+ }
}
class Bad {
- use(x) { return x & 0x100000000; }
+ use(x) {
+ return x & 0x100000000;
+ }
}
f(o, x) => o.use(x << 1);
@@ -23,4 +27,3 @@ main() {
}
Expect.equals(0x100000000, f(bad, 0x80000000));
}
-

Powered by Google App Engine
This is Rietveld 408576698