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

Unified Diff: tests/compiler/dart2js_native/native_novel_html_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_novel_html_test.dart
diff --git a/tests/compiler/dart2js_native/native_novel_html_test.dart b/tests/compiler/dart2js_native/native_novel_html_test.dart
index fba8be7c3ef63f38dd737ed7e40b97b98e008e3c..e03589e77a19982d09d906741c298d0038f96033 100644
--- a/tests/compiler/dart2js_native/native_novel_html_test.dart
+++ b/tests/compiler/dart2js_native/native_novel_html_test.dart
@@ -10,11 +10,11 @@ import "package:expect/expect.dart";
@Native("HTMLElement")
class Element {
String dartMethod(int x) => 'dartMethod(${nativeMethod(x+1)})';
- String nativeMethod(int x) native;
+ String nativeMethod(int x) native ;
}
-makeE() native;
-makeF() native;
+makeE() native ;
+makeF() native ;
void setup() native """
// A novel HTML element.
@@ -39,7 +39,6 @@ Object.prototype.toString = function() {
}
""";
-
main() {
setup();

Powered by Google App Engine
This is Rietveld 408576698