| Index: sdk/lib/_internal/compiler/implementation/runtime_data.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/runtime_data.dart b/sdk/lib/_internal/compiler/implementation/runtime_data.dart
|
| deleted file mode 100644
|
| index 0a5688dce52cf433fa2deeb39faf771a198069f6..0000000000000000000000000000000000000000
|
| --- a/sdk/lib/_internal/compiler/implementation/runtime_data.dart
|
| +++ /dev/null
|
| @@ -1,18 +0,0 @@
|
| -/// Contains encoding, decoding and detection functionality for the
|
| -/// representation of program data at runtime.
|
| -///
|
| -/// This library is shared between the compiler and the runtime system.
|
| -library dart2js.runtime_data;
|
| -
|
| -
|
| -String encodeTypedefFieldDescriptor(int typeIndex) {
|
| - return ":$typeIndex;";
|
| -}
|
| -
|
| -bool isTypedefDescriptor(String descriptor) {
|
| - return descriptor.startsWith(':');
|
| -}
|
| -
|
| -int getTypeFromTypedef(String descriptor) {
|
| - return int.parse(descriptor.substring(1, descriptor.length - 1));
|
| -}
|
|
|