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

Unified Diff: tests/standalone/typed_array_int64_uint64_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/standalone/typed_array_int64_uint64_test.dart
diff --git a/tests/standalone/typed_array_int64_uint64_test.dart b/tests/standalone/typed_array_int64_uint64_test.dart
index f62ab53bc7c668d1081f83bf2f3928d323ecb463..141f18da355931be49aebf0e7207053e631799c0 100644
--- a/tests/standalone/typed_array_int64_uint64_test.dart
+++ b/tests/standalone/typed_array_int64_uint64_test.dart
@@ -6,6 +6,7 @@
// Library tag to be able to run in html test framework.
library TypedArray;
+
import "package:expect/expect.dart";
import 'package:async_helper/async_helper.dart';
import 'dart:async';
@@ -29,6 +30,7 @@ Int64List initInt64() {
int64[1] = 100000000;
return int64;
}
+
Int64List int64 = initInt64();
int64_receiver() {
@@ -56,7 +58,6 @@ int64_sender(message) {
r.send(a);
}
-
// Uint64 array.
Uint64List initUint64() {
var uint64 = new Uint64List(2);
@@ -64,6 +65,7 @@ Uint64List initUint64() {
uint64[1] = 0x7fffffffffffffff;
return uint64;
}
+
Uint64List uint64 = initUint64();
uint64_receiver() {

Powered by Google App Engine
This is Rietveld 408576698