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

Unified Diff: tests/compiler/dart2js_extra/no_such_method_test.dart

Issue 2345083003: dart2js: run dartfmt on tests (Closed)
Patch Set: revert another multipart test Created 4 years, 3 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/compiler/dart2js_extra/no_such_method_test.dart
diff --git a/tests/compiler/dart2js_extra/no_such_method_test.dart b/tests/compiler/dart2js_extra/no_such_method_test.dart
index a139c02f2d42cf68b54950a22543fb92ef15d9f8..38375d3f7775227674e11a89cab5bc9a3c72a03a 100644
--- a/tests/compiler/dart2js_extra/no_such_method_test.dart
+++ b/tests/compiler/dart2js_extra/no_such_method_test.dart
@@ -9,13 +9,15 @@ class NoSuchMethodInfo {
String name;
List args;
NoSuchMethodInfo(Object r, String m, List a)
- : receiver = r, name = m, args = a;
+ : receiver = r,
+ name = m,
+ args = a;
}
class A {
noSuchMethod(Invocation invocation) {
- topLevelInfo = new NoSuchMethodInfo(this, invocation.memberName,
- invocation.positionalArguments);
+ topLevelInfo = new NoSuchMethodInfo(
+ this, invocation.memberName, invocation.positionalArguments);
return topLevelInfo;
}
« no previous file with comments | « tests/compiler/dart2js_extra/named_parameter_for_static_test.dart ('k') | tests/compiler/dart2js_extra/null_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698