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

Unified Diff: tests/compiler/dart2js_native/native_missing_method2_frog_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_native/native_missing_method2_frog_test.dart
diff --git a/tests/compiler/dart2js_native/native_missing_method2_frog_test.dart b/tests/compiler/dart2js_native/native_missing_method2_frog_test.dart
index 5a083d7805494a8338af98defe3f5bac1d4c27aa..0a7b1f4029b0cc1fa17fd92dd7350f453f7928d5 100644
--- a/tests/compiler/dart2js_native/native_missing_method2_frog_test.dart
+++ b/tests/compiler/dart2js_native/native_missing_method2_frog_test.dart
@@ -6,10 +6,9 @@ import "dart:_js_helper";
import "package:expect/expect.dart";
@Native("A")
-class A {
-}
+class A {}
-makeA() native;
+makeA() native ;
void setup() native """
function A() {};
@@ -18,35 +17,33 @@ makeA = function() { return new A; }
""";
class B {
- foo() { return 42; }
+ foo() {
+ return 42;
+ }
}
class C {
// By having two 'foo' defined in the application, Frog will mangle
// all calls to 'foo', which makes this test pass.
- foo(x) { return 43; }
+ foo(x) {
+ return 43;
+ }
}
typedContext() {
- var things = [ makeA(), new B() ];
+ var things = [makeA(), new B()];
A a = things[0];
- Expect.throws(() => a.foo(),
- (e) => e is NoSuchMethodError);
- Expect.throws(() => a.foo,
- (e) => e is NoSuchMethodError);
- Expect.throws(() => a.foo = 4,
- (e) => e is NoSuchMethodError);
+ Expect.throws(() => a.foo(), (e) => e is NoSuchMethodError);
+ Expect.throws(() => a.foo, (e) => e is NoSuchMethodError);
+ Expect.throws(() => a.foo = 4, (e) => e is NoSuchMethodError);
}
untypedContext() {
- var things = [ makeA(), new B() ];
+ var things = [makeA(), new B()];
var a = things[0];
- Expect.throws(() => a.foo(),
- (e) => e is NoSuchMethodError);
- Expect.throws(() => a.foo,
- (e) => e is NoSuchMethodError);
- Expect.throws(() => a.foo = 4,
- (e) => e is NoSuchMethodError);
+ Expect.throws(() => a.foo(), (e) => e is NoSuchMethodError);
+ Expect.throws(() => a.foo, (e) => e is NoSuchMethodError);
+ Expect.throws(() => a.foo = 4, (e) => e is NoSuchMethodError);
}
main() {

Powered by Google App Engine
This is Rietveld 408576698