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

Unified Diff: tests/compiler/dart2js_native/error_safeToString_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/error_safeToString_test.dart
diff --git a/tests/compiler/dart2js_native/error_safeToString_test.dart b/tests/compiler/dart2js_native/error_safeToString_test.dart
index 3322560b0cc1935abe7149b9c05b9e4340bc4bc8..fa022d9c94a34213cdb1fe2e40bfa5fe13ef5a84 100644
--- a/tests/compiler/dart2js_native/error_safeToString_test.dart
+++ b/tests/compiler/dart2js_native/error_safeToString_test.dart
@@ -5,11 +5,12 @@
import "package:expect/expect.dart";
import 'dart:_foreign_helper' show JS_INTERCEPTOR_CONSTANT, JS;
import 'dart:_js_helper' show Native, Creates;
-import 'dart:_interceptors' show
- Interceptor,
- JavaScriptObject,
- PlainJavaScriptObject,
- UnknownJavaScriptObject;
+import 'dart:_interceptors'
+ show
+ Interceptor,
+ JavaScriptObject,
+ PlainJavaScriptObject,
+ UnknownJavaScriptObject;
// Test for safe formatting of JavaScript objects by Error.safeToString.
@@ -24,14 +25,14 @@ class Rascal {
toString() => 'RRRRRRRR';
}
-makeA() native;
-makeB() native;
-makeC() native;
-makeD() native;
-makeE() native;
-makeP() native;
-makeQ() native;
-makeR() native;
+makeA() native ;
+makeB() native ;
+makeC() native ;
+makeD() native ;
+makeE() native ;
+makeP() native ;
+makeQ() native ;
+makeR() native ;
void setup() native r"""
makeA = function(){return {hello: 123};};
@@ -71,7 +72,6 @@ makeR = function(){return new RRRR();};
""";
-
expectTypeName(expectedName, s) {
var m = new RegExp(r"Instance of '(.*)'").firstMatch(s);
Expect.isNotNull(m);
@@ -89,7 +89,6 @@ final unknownJsString =
final interceptorString =
Error.safeToString(JS_INTERCEPTOR_CONSTANT(Interceptor));
-
testDistinctInterceptors() {
// Test invariants needed for the other tests.
@@ -110,7 +109,6 @@ testDistinctInterceptors() {
Expect.equals(unknownJsString, unk2);
}
-
testExternal() {
var x = makeA();
Expect.equals(plainJsString, Error.safeToString(x));
@@ -131,7 +129,7 @@ testExternal() {
testNative() {
var x = makeP();
- Expect.isTrue(x is Purple); // This test forces Purple to be distinguished.
+ Expect.isTrue(x is Purple); // This test forces Purple to be distinguished.
Expect.notEquals(plainJsString, Error.safeToString(x));
Expect.notEquals(unknownJsString, Error.safeToString(x));
Expect.notEquals(interceptorString, Error.safeToString(x));
@@ -143,8 +141,7 @@ testNative() {
print('Q: $x ${Error.safeToString(x)}');
// We are going to get either the general interceptor or the JavaScript
// constructor.
- Expect.isTrue(
- "Instance of 'QQQQ'" == Error.safeToString(x) ||
+ Expect.isTrue("Instance of 'QQQQ'" == Error.safeToString(x) ||
interceptorString == Error.safeToString(x));
x = makeR();
« no previous file with comments | « tests/compiler/dart2js_native/downcast_test.dart ('k') | tests/compiler/dart2js_native/event_loop_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698