| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 import 'dart:io'; | 5 import 'dart:io'; |
| 6 import 'dart:json'; | 6 import 'dart:json'; |
| 7 import 'dart:uri'; | |
| 8 | 7 |
| 9 // TODO(ahe): Should be dart:mirrors. | 8 // TODO(ahe): Should be dart:mirrors. |
| 10 import '../../implementation/mirrors/mirrors.dart'; | 9 import '../../implementation/mirrors/mirrors.dart'; |
| 11 | 10 |
| 12 import '../../../libraries.dart' | 11 import '../../../libraries.dart' |
| 13 show LIBRARIES, LibraryInfo; | 12 show LIBRARIES, LibraryInfo; |
| 14 | 13 |
| 15 import '../../implementation/mirrors/dart2js_mirror.dart' | 14 import '../../implementation/mirrors/dart2js_mirror.dart' |
| 16 show analyze, BackDoor; | 15 show analyze, BackDoor; |
| 17 | 16 |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 // DO NOT EDIT. | 89 // DO NOT EDIT. |
| 91 // This file is generated by jsonify.dart. | 90 // This file is generated by jsonify.dart. |
| 92 | 91 |
| 93 library dart.sdk_sources; | 92 library dart.sdk_sources; |
| 94 | 93 |
| 95 const Map<String, String> SDK_SOURCES = const <String, String>'''); | 94 const Map<String, String> SDK_SOURCES = const <String, String>'''); |
| 96 output.writeStringSync(stringify(map).replaceAll(r'$', r'\$')); | 95 output.writeStringSync(stringify(map).replaceAll(r'$', r'\$')); |
| 97 output.writeStringSync(';\n'); | 96 output.writeStringSync(';\n'); |
| 98 output.closeSync(); | 97 output.closeSync(); |
| 99 } | 98 } |
| OLD | NEW |