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

Unified Diff: tests/compiler/dart2js_native/native_exceptions1_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_exceptions1_frog_test.dart
diff --git a/tests/compiler/dart2js_native/native_exceptions1_frog_test.dart b/tests/compiler/dart2js_native/native_exceptions1_frog_test.dart
index 222894f667785545f119845e754245f5bd8e0a24..a1116502fc8e840f9bb31b234313cfe531a5b414 100644
--- a/tests/compiler/dart2js_native/native_exceptions1_frog_test.dart
+++ b/tests/compiler/dart2js_native/native_exceptions1_frog_test.dart
@@ -16,11 +16,10 @@ import "package:expect/expect.dart";
// is no place in the Dart language to communicate (3). So we use the following
// fake body technique.
-
// The exception type.
@Native("E")
class E {
- E._used() native; // Bogus native constructor, called only from fake body.
+ E._used() native ; // Bogus native constructor, called only from fake body.
final int code;
}
@@ -31,7 +30,7 @@ class A {
// Exception class E is created.
@Creates("E")
@Returns('int')
- op(int x) native;
+ op(int x) native ;
}
// This class is here just so that a dynamic context is polymorphic.
@@ -40,7 +39,7 @@ class B {
op(String x) => 123;
}
-makeA() native;
+makeA() native ;
void setup1() native """
// Ensure we are not relying on global names 'A' and 'E'.

Powered by Google App Engine
This is Rietveld 408576698