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

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

Issue 588183002: Emit warning on import of dart:mirrors. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Optimize and limit import chain processing 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
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 dart_backend; 5 library dart_backend;
6 6
7 import 'dart:async' show Future; 7 import 'dart:async' show Future;
8 import 'dart:math' show max; 8 import 'dart:math' show max;
9 import '../elements/elements.dart'; 9 import '../elements/elements.dart';
10 import '../dart2jslib.dart'; 10 import '../dart2jslib.dart';
11 import '../library_loader.dart' show LoadedLibraries;
11 import '../dart_types.dart'; 12 import '../dart_types.dart';
12 import '../tree/tree.dart'; 13 import '../tree/tree.dart';
13 import '../cps_ir/cps_ir_nodes.dart' as cps_ir; 14 import '../cps_ir/cps_ir_nodes.dart' as cps_ir;
14 import '../constants/expressions.dart'; 15 import '../constants/expressions.dart';
15 import '../cps_ir/optimizers.dart'; 16 import '../cps_ir/optimizers.dart';
16 import 'tree_ir_builder.dart' as tree_builder; 17 import 'tree_ir_builder.dart' as tree_builder;
17 import 'tree_ir_nodes.dart' as tree_ir; 18 import 'tree_ir_nodes.dart' as tree_ir;
18 import '../util/util.dart'; 19 import '../util/util.dart';
19 import '../mirror_renamer/mirror_renamer.dart'; 20 import '../mirror_renamer/mirror_renamer.dart';
20 import 'logical_rewriter.dart' show LogicalRewriter; 21 import 'logical_rewriter.dart' show LogicalRewriter;
(...skipping 10 matching lines...) Expand all
31 Keyword, 32 Keyword,
32 OPEN_PAREN_INFO, 33 OPEN_PAREN_INFO,
33 CLOSE_PAREN_INFO, 34 CLOSE_PAREN_INFO,
34 SEMICOLON_INFO, 35 SEMICOLON_INFO,
35 IDENTIFIER_INFO; 36 IDENTIFIER_INFO;
36 37
37 part 'backend.dart'; 38 part 'backend.dart';
38 part 'renamer.dart'; 39 part 'renamer.dart';
39 part 'placeholder_collector.dart'; 40 part 'placeholder_collector.dart';
40 part 'outputter.dart'; 41 part 'outputter.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698