| OLD | NEW |
| 1 part of dart.core; | 1 part of dart.core; |
| 2 | 2 |
| 3 class Object { | 3 class Object { |
| 4 const Object(); | 4 const Object(); |
| 5 bool operator ==(other) => identical(this, other); | 5 bool operator ==(other) => identical(this, other); |
| 6 int get hashCode => ((__x30) => DDC$RT.cast(__x30, dynamic, int, | 6 external int get hashCode; |
| 7 "CastGeneral", """line 73, column 23 of dart:core/object.dart: """, | 7 external String toString(); |
| 8 __x30 is int, true))(Primitives.objectHashCode(this)); | 8 external dynamic noSuchMethod(Invocation invocation); |
| 9 String toString() => ((__x31) => DDC$RT.cast(__x31, dynamic, String, | 9 external Type get runtimeType; |
| 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 } | |
| 16 Type get runtimeType => ((__x32) => DDC$RT.cast(__x32, dynamic, Type, | |
| 17 "CastGeneral", """line 101, column 27 of dart:core/object.dart: """, | |
| 18 __x32 is Type, true))(getRuntimeType(this)); | |
| 19 } | 10 } |
| OLD | NEW |