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

Side by Side Diff: sdk/lib/_internal/compiler/implementation/elements/elements.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 elements; 5 library elements;
6 6
7 import 'dart:uri';
8 7
9 import 'modelx.dart'; 8 import 'modelx.dart';
10 import '../tree/tree.dart'; 9 import '../tree/tree.dart';
11 import '../util/util.dart'; 10 import '../util/util.dart';
12 import '../resolution/resolution.dart'; 11 import '../resolution/resolution.dart';
13 12
14 import '../dart2jslib.dart' show InterfaceType, 13 import '../dart2jslib.dart' show InterfaceType,
15 DartType, 14 DartType,
16 TypeVariableType, 15 TypeVariableType,
17 TypedefType, 16 TypedefType,
(...skipping 891 matching lines...) Expand 10 before | Expand all | Expand 10 after
909 int get resolutionState; 908 int get resolutionState;
910 Token get beginToken; 909 Token get beginToken;
911 Token get endToken; 910 Token get endToken;
912 911
913 // TODO(kasperl): Try to get rid of these. 912 // TODO(kasperl): Try to get rid of these.
914 void set annotatedElement(Element value); 913 void set annotatedElement(Element value);
915 void set resolutionState(int value); 914 void set resolutionState(int value);
916 915
917 MetadataAnnotation ensureResolved(Compiler compiler); 916 MetadataAnnotation ensureResolved(Compiler compiler);
918 } 917 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698