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

Side by Side Diff: sdk/lib/_internal/compiler/implementation/scanner/scannerlib.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) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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 scanner; 5 library scanner;
6 6
7 import 'dart:collection' show LinkedHashMap, IterableBase; 7 import 'dart:collection' show LinkedHashMap, IterableBase;
8 import 'dart:uri';
9 8
10 import 'scanner_implementation.dart'; 9 import 'scanner_implementation.dart';
11 import '../elements/elements.dart'; 10 import '../elements/elements.dart';
12 import '../elements/modelx.dart' 11 import '../elements/modelx.dart'
13 show FunctionElementX, 12 show FunctionElementX,
14 TypedefElementX, 13 TypedefElementX,
15 VariableElementX, 14 VariableElementX,
16 VariableListElementX, 15 VariableListElementX,
17 ClassElementX, 16 ClassElementX,
18 MetadataAnnotationX, 17 MetadataAnnotationX,
(...skipping 10 matching lines...) Expand all
29 part 'class_element_parser.dart'; 28 part 'class_element_parser.dart';
30 part 'keyword.dart'; 29 part 'keyword.dart';
31 part 'listener.dart'; 30 part 'listener.dart';
32 part 'parser.dart'; 31 part 'parser.dart';
33 part 'parser_task.dart'; 32 part 'parser_task.dart';
34 part 'partial_parser.dart'; 33 part 'partial_parser.dart';
35 part 'scanner.dart'; 34 part 'scanner.dart';
36 part 'scanner_task.dart'; 35 part 'scanner_task.dart';
37 part 'string_scanner.dart'; 36 part 'string_scanner.dart';
38 part 'token.dart'; 37 part 'token.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698