| Index: lib/compiler/implementation/lib/interceptors.dart
|
| ===================================================================
|
| --- lib/compiler/implementation/lib/interceptors.dart (revision 12499)
|
| +++ lib/compiler/implementation/lib/interceptors.dart (working copy)
|
| @@ -640,17 +640,3 @@
|
| }
|
|
|
| get$toString(receiver) => () => toString(receiver);
|
| -
|
| -runtimeType(receiver) {
|
| - if (receiver is int) {
|
| - return getOrCreateCachedRuntimeType('int');
|
| - } else if (receiver is String) {
|
| - return getOrCreateCachedRuntimeType('String');
|
| - } else if (receiver is double) {
|
| - return getOrCreateCachedRuntimeType('double');
|
| - } else if (receiver is List) {
|
| - return getOrCreateCachedRuntimeType('List');
|
| - } else {
|
| - return UNINTERCEPTED(receiver.runtimeType());
|
| - }
|
| -}
|
|
|