| 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..542ed49d7a5631907ab0210491e280a57fd3075a 100644
|
| --- a/test/dart_codegen/expect/core/object.dart
|
| +++ b/test/dart_codegen/expect/core/object.dart
|
| @@ -3,17 +3,8 @@ 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);
|
| - }
|
| - 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));
|
| + external int get hashCode;
|
| + external String toString();
|
| + external dynamic noSuchMethod(Invocation invocation);
|
| + external Type get runtimeType;
|
| }
|
|
|