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

Unified Diff: tests/compiler/dart2js_native/native_method_rename1_frog_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/compiler/dart2js_native/native_method_rename1_frog_test.dart
diff --git a/tests/compiler/dart2js_native/native_method_rename1_frog_test.dart b/tests/compiler/dart2js_native/native_method_rename1_frog_test.dart
index 4d8ead2bbf90af6b4293218f437fd699e728b49d..34332cde92045c3755a41344ab4b153179bbf4a1 100644
--- a/tests/compiler/dart2js_native/native_method_rename1_frog_test.dart
+++ b/tests/compiler/dart2js_native/native_method_rename1_frog_test.dart
@@ -10,16 +10,16 @@ import 'dart:_js_helper' show Native, JSName;
@Native("A")
class A {
@JSName('fooA')
- int foo() native ;
+ int foo() native;
@JSName('barA')
- int bar() native ;
+ int bar() native;
@JSName('bazA')
- int baz() native ;
+ int baz() native;
}
-A makeA() native ;
+A makeA() native;
class B {
int bar([x]) => 800;

Powered by Google App Engine
This is Rietveld 408576698