| 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 @patch int get hashCode => ((__x30) => DDC$RT.cast(__x30, dynamic, int, | 6 int get hashCode => ((__x30) => DDC$RT.cast(__x30, dynamic, int, |
| 7 "CastGeneral", """line 62, column 23 of dart:core/object.dart: """, | 7 "CastGeneral", """line 73, column 23 of dart:core/object.dart: """, |
| 8 __x30 is int, true))(Primitives.objectHashCode(this)); | 8 __x30 is int, true))(Primitives.objectHashCode(this)); |
| 9 @patch String toString() => ((__x31) => DDC$RT.cast(__x31, dynamic, String, | 9 String toString() => ((__x31) => DDC$RT.cast(__x31, dynamic, String, |
| 10 "CastGeneral", """line 65, column 24 of dart:core/object.dart: """, | 10 "CastGeneral", """line 78, column 24 of dart:core/object.dart: """, |
| 11 __x31 is String, true))(Primitives.objectToString(this)); | 11 __x31 is String, true))(Primitives.objectToString(this)); |
| 12 @patch dynamic noSuchMethod(Invocation invocation) { | 12 dynamic noSuchMethod(Invocation invocation) { |
| 13 throw new NoSuchMethodError(this, invocation.memberName, | 13 throw new NoSuchMethodError(this, invocation.memberName, |
| 14 invocation.positionalArguments, invocation.namedArguments); | 14 invocation.positionalArguments, invocation.namedArguments); |
| 15 } | 15 } |
| 16 @patch Type get runtimeType => ((__x32) => DDC$RT.cast(__x32, dynamic, Type, | 16 Type get runtimeType => ((__x32) => DDC$RT.cast(__x32, dynamic, Type, |
| 17 "CastGeneral", """line 77, column 27 of dart:core/object.dart: """, | 17 "CastGeneral", """line 101, column 27 of dart:core/object.dart: """, |
| 18 __x32 is Type, true))(getRuntimeType(this)); | 18 __x32 is Type, true))(getRuntimeType(this)); |
| 19 } | 19 } |
| OLD | NEW |