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

Side by Side Diff: sdk/lib/_internal/compiler/implementation/mirrors/mirrors.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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 library mirrors; 5 library mirrors;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 import 'dart:uri';
9 8
10 /** 9 /**
11 * The main interface for the whole mirror system. 10 * The main interface for the whole mirror system.
12 */ 11 */
13 abstract class MirrorSystem { 12 abstract class MirrorSystem {
14 /** 13 /**
15 * Returns an unmodifiable map of all libraries in this mirror system. 14 * Returns an unmodifiable map of all libraries in this mirror system.
16 */ 15 */
17 Map<Uri, LibraryMirror> get libraries; 16 Map<Uri, LibraryMirror> get libraries;
18 17
(...skipping 661 matching lines...) Expand 10 before | Expand all | Expand 10 after
680 /** 679 /**
681 * Returns the URI where the source originated. 680 * Returns the URI where the source originated.
682 */ 681 */
683 Uri get sourceUri; 682 Uri get sourceUri;
684 683
685 /** 684 /**
686 * Returns the text of this source. 685 * Returns the text of this source.
687 */ 686 */
688 String get sourceText; 687 String get sourceText;
689 } 688 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698