Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Side by Side Diff: sdk/lib/_internal/compiler/samples/jsonify/jsonify.dart

Issue 16019002: Merge the dart:uri library into dart:core and update the Uri class (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Final cleanup Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « sdk/lib/_internal/compiler/samples/darttags/darttags.dart ('k') | sdk/lib/_internal/compiler/samples/leap/leap.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698