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

Side by Side Diff: sdk/lib/_internal/compiler/implementation/elements/modelx.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, 7 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 library elements.modelx; 5 library elements.modelx;
6 6
7 import 'dart:uri';
8 import 'dart:collection' show LinkedHashMap; 7 import 'dart:collection' show LinkedHashMap;
9 8
10 import 'elements.dart'; 9 import 'elements.dart';
11 import '../../compiler.dart' as api; 10 import '../../compiler.dart' as api;
12 import '../tree/tree.dart'; 11 import '../tree/tree.dart';
13 import '../util/util.dart'; 12 import '../util/util.dart';
14 import '../resolution/resolution.dart'; 13 import '../resolution/resolution.dart';
15 14
16 import '../dart2jslib.dart' show invariant, 15 import '../dart2jslib.dart' show invariant,
17 InterfaceType, 16 InterfaceType,
(...skipping 2077 matching lines...) Expand 10 before | Expand all | Expand 10 after
2095 2094
2096 MetadataAnnotation ensureResolved(Compiler compiler) { 2095 MetadataAnnotation ensureResolved(Compiler compiler) {
2097 if (resolutionState == STATE_NOT_STARTED) { 2096 if (resolutionState == STATE_NOT_STARTED) {
2098 compiler.resolver.resolveMetadataAnnotation(this); 2097 compiler.resolver.resolveMetadataAnnotation(this);
2099 } 2098 }
2100 return this; 2099 return this;
2101 } 2100 }
2102 2101
2103 String toString() => 'MetadataAnnotation($value, $resolutionState)'; 2102 String toString() => 'MetadataAnnotation($value, $resolutionState)';
2104 } 2103 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698