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

Unified Diff: test/dart_codegen/expect/core/object.dart

Issue 963593002: Disable formatting and add new-lines to make tests faster. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 10 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: test/dart_codegen/expect/core/object.dart
diff --git a/test/dart_codegen/expect/core/object.dart b/test/dart_codegen/expect/core/object.dart
index b34cda4d6917c55389473803bf9cd8f5a1868c28..9d5e05a49a26dddc8255324b76979db820b6404c 100644
--- a/test/dart_codegen/expect/core/object.dart
+++ b/test/dart_codegen/expect/core/object.dart
@@ -1,19 +1,10 @@
part of dart.core;
-
-class Object {
- const Object();
- bool operator ==(other) => identical(this, other);
- int get hashCode => ((__x30) => DDC$RT.cast(__x30, dynamic, int,
- "CastGeneral", """line 73, column 23 of dart:core/object.dart: """,
- __x30 is int, true))(Primitives.objectHashCode(this));
- String toString() => ((__x31) => DDC$RT.cast(__x31, dynamic, String,
- "CastGeneral", """line 78, column 24 of dart:core/object.dart: """,
- __x31 is String, true))(Primitives.objectToString(this));
- dynamic noSuchMethod(Invocation invocation) {
- throw new NoSuchMethodError(this, invocation.memberName,
- invocation.positionalArguments, invocation.namedArguments);
+ class Object {const Object();
+ bool operator ==(other) => identical(this, other);
+ int get hashCode => ((__x30) => DDC$RT.cast(__x30, dynamic, int, "CastGeneral", """line 73, column 23 of dart:core/object.dart: """, __x30 is int, true))(Primitives.objectHashCode(this));
+ String toString() => ((__x31) => DDC$RT.cast(__x31, dynamic, String, "CastGeneral", """line 78, column 24 of dart:core/object.dart: """, __x31 is String, true))(Primitives.objectToString(this));
+ dynamic noSuchMethod(Invocation invocation) {
+ throw new NoSuchMethodError(this, invocation.memberName, invocation.positionalArguments, invocation.namedArguments);
}
- Type get runtimeType => ((__x32) => DDC$RT.cast(__x32, dynamic, Type,
- "CastGeneral", """line 101, column 27 of dart:core/object.dart: """,
- __x32 is Type, true))(getRuntimeType(this));
+ Type get runtimeType => ((__x32) => DDC$RT.cast(__x32, dynamic, Type, "CastGeneral", """line 101, column 27 of dart:core/object.dart: """, __x32 is Type, true))(getRuntimeType(this));
}

Powered by Google App Engine
This is Rietveld 408576698