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

Unified Diff: tests/compiler/dart2js_native/subclassing_super_field_1_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/subclassing_super_field_1_test.dart
diff --git a/tests/compiler/dart2js_native/subclassing_super_field_1_test.dart b/tests/compiler/dart2js_native/subclassing_super_field_1_test.dart
index 97da9950ba1194d67a98f789553fe8b8811a8a00..1e602df280b05d1883ef18ad5993e6f7da405c04 100644
--- a/tests/compiler/dart2js_native/subclassing_super_field_1_test.dart
+++ b/tests/compiler/dart2js_native/subclassing_super_field_1_test.dart
@@ -5,8 +5,8 @@
import "package:expect/expect.dart";
import 'dart:_foreign_helper' show JS;
import 'dart:_js_helper' show Native, Creates, setNativeSubclassDispatchRecord;
-import 'dart:_interceptors' show
- findInterceptorForType, findConstructorForNativeSubclassType;
+import 'dart:_interceptors'
+ show findInterceptorForType, findConstructorForNativeSubclassType;
// Test for shadowed fields in classes that extend native classes.
@@ -20,7 +20,7 @@ class A extends N {
A.init() : super.init();
}
-class B extends A {
+class B extends A {
var foo = 222;
B.init() : super.init();
@@ -28,10 +28,10 @@ class B extends A {
Bfoo() => foo;
}
-B makeB() native;
+B makeB() native ;
@Creates('=Object')
-getBPrototype() native;
+getBPrototype() native ;
void setup() native r"""
function B() { }

Powered by Google App Engine
This is Rietveld 408576698