| OLD | NEW |
| 1 library dart.core; | 1 library dart.core; |
| 2 | 2 |
| 3 import 'dart:collection' as DDC$collection$; | 3 import 'dart:collection' as DDC$collection$; |
| 4 import 'package:dev_compiler/runtime/dart_logging_runtime.dart' as DDC$RT; | 4 import 'package:dev_compiler/runtime/dart_logging_runtime.dart' as DDC$RT; |
| 5 import "dart:collection"; | 5 import "dart:collection"; |
| 6 import "dart:_internal" hide Symbol; | 6 import "dart:_internal" hide Symbol; |
| 7 import "dart:_internal" as internal show Symbol; | 7 import "dart:_internal" as internal show Symbol; |
| 8 import "dart:convert" show UTF8, LATIN1, Encoding; | 8 import "dart:convert" show UTF8, LATIN1, Encoding; |
| 9 import "dart:math" show Random; | 9 import "dart:math" show Random; |
| 10 import "dart:_internal" as _symbol_dev; | |
| 11 part "annotations.dart"; | 10 part "annotations.dart"; |
| 12 part "bool.dart"; | 11 part "bool.dart"; |
| 13 part "comparable.dart"; | 12 part "comparable.dart"; |
| 14 part "date_time.dart"; | 13 part "date_time.dart"; |
| 15 part "double.dart"; | 14 part "double.dart"; |
| 16 part "duration.dart"; | 15 part "duration.dart"; |
| 17 part "errors.dart"; | 16 part "errors.dart"; |
| 18 part "exceptions.dart"; | 17 part "exceptions.dart"; |
| 19 part "expando.dart"; | 18 part "expando.dart"; |
| 20 part "function.dart"; | 19 part "function.dart"; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 34 part "set.dart"; | 33 part "set.dart"; |
| 35 part "sink.dart"; | 34 part "sink.dart"; |
| 36 part "stacktrace.dart"; | 35 part "stacktrace.dart"; |
| 37 part "stopwatch.dart"; | 36 part "stopwatch.dart"; |
| 38 part "string.dart"; | 37 part "string.dart"; |
| 39 part "string_buffer.dart"; | 38 part "string_buffer.dart"; |
| 40 part "string_sink.dart"; | 39 part "string_sink.dart"; |
| 41 part "symbol.dart"; | 40 part "symbol.dart"; |
| 42 part "type.dart"; | 41 part "type.dart"; |
| 43 part "uri.dart"; | 42 part "uri.dart"; |
| 44 | |
| 45 String _symbolToString(Symbol symbol) => _symbol_dev.Symbol.getName(DDC$RT.cast( | |
| 46 symbol, Symbol, Symbol, "CastGeneral", | |
| 47 """line 196, column 69 of dart:core: """, symbol is Symbol, true)); | |
| 48 _symbolMapToStringMap(Map<Symbol, dynamic> map) { | |
| 49 if (map == null) return null; | |
| 50 var result = new Map<String, dynamic>(); | |
| 51 map.forEach((Symbol key, value) { | |
| 52 result[_symbolToString(key)] = value; | |
| 53 }); | |
| 54 return result; | |
| 55 } | |
| 56 class _ListConstructorSentinel extends JSInt { | |
| 57 const _ListConstructorSentinel(); | |
| 58 } | |
| OLD | NEW |