| OLD | NEW |
| 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 } |
| OLD | NEW |