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

Unified Diff: tests/language_strong/const_nested_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_strong/const_nested_test.dart
diff --git a/tests/language_strong/const_nested_test.dart b/tests/language_strong/const_nested_test.dart
index d78e626a763cea98d20ab9230ba1e96f5018acd3..bf52d67b97c1940e1160a3c911af1fc521f9914d 100644
--- a/tests/language_strong/const_nested_test.dart
+++ b/tests/language_strong/const_nested_test.dart
@@ -16,7 +16,7 @@ class ConstFoo {
getClosure() {
const MIN = 2 - 1;
const MAX = N * 2;
- const MASK = (1 << (MAX - MIN + 1)) - 1; // 65535.
+ const MASK = (1 << (MAX - MIN + 1)) - 1; // 65535.
void foo() {
Expect.equals(1, MIN);
@@ -36,11 +36,7 @@ getClosure() {
return foo;
}
-
main() {
var f = getClosure();
f();
}
-
-
-

Powered by Google App Engine
This is Rietveld 408576698