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

Side by Side 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, 9 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 unified diff | Download patch
OLDNEW
1 part of dart.core; 1 part of dart.core;
2 2 class Object {const Object();
3 class Object { 3 bool operator ==(other) => identical(this, other);
4 const Object(); 4 int get hashCode => ((__x30) => DDC$RT.cast(__x30, dynamic, int, "CastGeneral", """line 73, column 23 of dart:core/object.dart: """, __x30 is int, true))(Primi tives.objectHashCode(this));
5 bool operator ==(other) => identical(this, other); 5 String toString() => ((__x31) => DDC$RT.cast(__x31, dynamic, String, "CastGener al", """line 78, column 24 of dart:core/object.dart: """, __x31 is String, true) )(Primitives.objectToString(this));
6 int get hashCode => ((__x30) => DDC$RT.cast(__x30, dynamic, int, 6 dynamic noSuchMethod(Invocation invocation) {
7 "CastGeneral", """line 73, column 23 of dart:core/object.dart: """, 7 throw new NoSuchMethodError(this, invocation.memberName, invocation.positional Arguments, invocation.namedArguments);
8 __x30 is int, true))(Primitives.objectHashCode(this));
9 String toString() => ((__x31) => DDC$RT.cast(__x31, dynamic, String,
10 "CastGeneral", """line 78, column 24 of dart:core/object.dart: """,
11 __x31 is String, true))(Primitives.objectToString(this));
12 dynamic noSuchMethod(Invocation invocation) {
13 throw new NoSuchMethodError(this, invocation.memberName,
14 invocation.positionalArguments, invocation.namedArguments);
15 } 8 }
16 Type get runtimeType => ((__x32) => DDC$RT.cast(__x32, dynamic, Type, 9 Type get runtimeType => ((__x32) => DDC$RT.cast(__x32, dynamic, Type, "CastGene ral", """line 101, column 27 of dart:core/object.dart: """, __x32 is Type, true) )(getRuntimeType(this));
17 "CastGeneral", """line 101, column 27 of dart:core/object.dart: """,
18 __x32 is Type, true))(getRuntimeType(this));
19 } 10 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698