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; |
} |