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

Unified Diff: tests/lib_strong/typed_data/float32x4_unbox_regress_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/lib_strong/typed_data/float32x4_unbox_regress_test.dart
diff --git a/tests/lib_strong/typed_data/float32x4_unbox_regress_test.dart b/tests/lib_strong/typed_data/float32x4_unbox_regress_test.dart
index 155804f3ddde62a76f47f06b8bf2e91ebedae306..9edf80397c021fc44ef97cb64d25216c45976aa6 100644
--- a/tests/lib_strong/typed_data/float32x4_unbox_regress_test.dart
+++ b/tests/lib_strong/typed_data/float32x4_unbox_regress_test.dart
@@ -26,7 +26,7 @@ void testListStoreDeopt() {
// Without a proper check for SMI in the Float32x4 unbox instruction
// this might trigger a crash.
testListStore(list, 0, smi);
- } catch (_) { }
+ } catch (_) {}
}
testAdd(a, b) {
@@ -50,7 +50,6 @@ void testAddDeopt() {
} catch (_) {}
}
-
testGet(a) {
var c = a.x + a.y + a.z + a.w;
Expect.equals(10.0, c);
@@ -65,8 +64,7 @@ void testGetDeopt() {
try {
testGet(12);
- } catch (_) {
- }
+ } catch (_) {}
for (int i = 0; i < 20; i++) {
testGet(a);
@@ -92,8 +90,7 @@ void testComparisonDeopt() {
try {
testComparison(a, smi);
- } catch (_) {
- }
+ } catch (_) {}
for (int i = 0; i < 20; i++) {
testComparison(a, b);
@@ -101,8 +98,7 @@ void testComparisonDeopt() {
try {
testComparison(smi, a);
- } catch (_) {
- }
+ } catch (_) {}
for (int i = 0; i < 20; i++) {
testComparison(a, b);

Powered by Google App Engine
This is Rietveld 408576698