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

Side by Side Diff: pkg/compiler/lib/src/dart2jslib.dart

Issue 717103004: Revert "Emit warning on import of dart:mirrors." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « pkg/compiler/lib/src/dart2js.dart ('k') | pkg/compiler/lib/src/dart_backend/backend.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 dart2js; 5 library dart2js;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 import 'dart:collection' show Queue; 8 import 'dart:collection' show Queue;
9 import 'dart:profiler' show 9 import 'dart:profiler' show
10 UserTag; 10 UserTag;
(...skipping 16 matching lines...) Expand all
27 LibraryElementX, 27 LibraryElementX,
28 PrefixElementX, 28 PrefixElementX,
29 VoidElementX, 29 VoidElementX,
30 AnalyzableElement, 30 AnalyzableElement,
31 DeferredLoaderGetterElementX; 31 DeferredLoaderGetterElementX;
32 import 'helpers/helpers.dart'; // Included for debug helpers. 32 import 'helpers/helpers.dart'; // Included for debug helpers.
33 import 'js/js.dart' as js; 33 import 'js/js.dart' as js;
34 import 'js_backend/js_backend.dart' as js_backend; 34 import 'js_backend/js_backend.dart' as js_backend;
35 import 'library_loader.dart' 35 import 'library_loader.dart'
36 show LibraryLoader, 36 show LibraryLoader,
37 LibraryLoaderTask, 37 LibraryLoaderTask;
38 LoadedLibraries;
39 import 'mirrors_used.dart' show MirrorUsageAnalyzerTask; 38 import 'mirrors_used.dart' show MirrorUsageAnalyzerTask;
40 import 'native/native.dart' as native; 39 import 'native/native.dart' as native;
41 import 'ordered_typeset.dart'; 40 import 'ordered_typeset.dart';
42 import 'patch_parser.dart'; 41 import 'patch_parser.dart';
43 import 'resolution/class_members.dart' show MembersCreator; 42 import 'resolution/class_members.dart' show MembersCreator;
44 import 'resolution/resolution.dart'; 43 import 'resolution/resolution.dart';
45 import 'scanner/scannerlib.dart'; 44 import 'scanner/scannerlib.dart';
46 import 'ssa/ssa.dart'; 45 import 'ssa/ssa.dart';
47 import 'source_file.dart' show SourceFile; 46 import 'source_file.dart' show SourceFile;
48 import 'tracer.dart' show Tracer; 47 import 'tracer.dart' show Tracer;
49 import 'tree/tree.dart'; 48 import 'tree/tree.dart';
50 import 'types/types.dart' as ti; 49 import 'types/types.dart' as ti;
51 import 'universe/universe.dart'; 50 import 'universe/universe.dart';
52 import 'util/characters.dart' show $_; 51 import 'util/characters.dart' show $_;
53 import 'util/uri_extras.dart' as uri_extras show relativize;
54 import 'util/util.dart'; 52 import 'util/util.dart';
55 53
56 export 'helpers/helpers.dart'; 54 export 'helpers/helpers.dart';
57 export 'resolution/resolution.dart' show TreeElements, TreeElementMapping; 55 export 'resolution/resolution.dart' show TreeElements, TreeElementMapping;
58 export 'scanner/scannerlib.dart' show isUserDefinableOperator, 56 export 'scanner/scannerlib.dart' show isUserDefinableOperator,
59 isUnaryOperator, 57 isUnaryOperator,
60 isBinaryOperator, 58 isBinaryOperator,
61 isTernaryOperator, 59 isTernaryOperator,
62 isMinusOperator; 60 isMinusOperator;
63 export 'universe/universe.dart' show Selector, TypedSelector; 61 export 'universe/universe.dart' show Selector, TypedSelector;
64 export 'util/util.dart' 62 export 'util/util.dart'
65 show Spannable, 63 show Spannable,
66 CURRENT_ELEMENT_SPANNABLE, 64 CURRENT_ELEMENT_SPANNABLE,
67 NO_LOCATION_SPANNABLE; 65 NO_LOCATION_SPANNABLE;
68 66
69 part 'code_buffer.dart'; 67 part 'code_buffer.dart';
70 part 'compile_time_constants.dart'; 68 part 'compile_time_constants.dart';
71 part 'compiler.dart'; 69 part 'compiler.dart';
72 part 'constant_system.dart'; 70 part 'constant_system.dart';
73 part 'constant_system_dart.dart'; 71 part 'constant_system_dart.dart';
74 part 'diagnostic_listener.dart'; 72 part 'diagnostic_listener.dart';
75 part 'enqueue.dart'; 73 part 'enqueue.dart';
76 part 'resolved_visitor.dart'; 74 part 'resolved_visitor.dart';
77 part 'script.dart'; 75 part 'script.dart';
78 part 'typechecker.dart'; 76 part 'typechecker.dart';
79 part 'warnings.dart'; 77 part 'warnings.dart';
80 part 'world.dart'; 78 part 'world.dart';
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/dart2js.dart ('k') | pkg/compiler/lib/src/dart_backend/backend.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698