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

Unified Diff: tests/language/vm/load_elimination_mark_stored_values_escaping_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/load_elimination_mark_stored_values_escaping_test.dart
diff --git a/tests/language/vm/load_elimination_mark_stored_values_escaping_test.dart b/tests/language/vm/load_elimination_mark_stored_values_escaping_test.dart
index 1c079aff921150cd93d836e53daa51f08ff71a1d..86bec6fed2cbe7a20c289590a30b843af2c9002a 100644
--- a/tests/language/vm/load_elimination_mark_stored_values_escaping_test.dart
+++ b/tests/language/vm/load_elimination_mark_stored_values_escaping_test.dart
@@ -23,21 +23,20 @@ class A {
}
}
-
@noInline
modify() {
G.aa.val = 123;
}
class B {
- A aa;
+ A aa;
- @alwaysInline
- poly(p) {
- G = this;
- foo2(p, this);
- modify();
- }
+ @alwaysInline
+ poly(p) {
+ G = this;
+ foo2(p, this);
+ modify();
+ }
}
@alwaysInline

Powered by Google App Engine
This is Rietveld 408576698