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

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

Issue 1422623014: Add TypeUse. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 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
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 9
10 import '../../compiler.dart' show 10 import '../../compiler.dart' show
(...skipping 30 matching lines...) Expand all
41 import '../mirror_renamer/mirror_renamer.dart'; 41 import '../mirror_renamer/mirror_renamer.dart';
42 import '../resolution/tree_elements.dart' show 42 import '../resolution/tree_elements.dart' show
43 TreeElements, 43 TreeElements,
44 TreeElementMapping; 44 TreeElementMapping;
45 import '../tokens/keyword.dart' show 45 import '../tokens/keyword.dart' show
46 Keyword; 46 Keyword;
47 import '../tree/tree.dart'; 47 import '../tree/tree.dart';
48 import '../universe/selector.dart' show 48 import '../universe/selector.dart' show
49 Selector; 49 Selector;
50 import '../universe/use.dart' show 50 import '../universe/use.dart' show
51 DynamicUse; 51 DynamicUse,
52 TypeUse,
53 TypeUseKind;
52 import '../universe/world_impact.dart' show 54 import '../universe/world_impact.dart' show
53 WorldImpact, 55 WorldImpact,
54 TransformedWorldImpact; 56 TransformedWorldImpact;
55 import '../util/util.dart'; 57 import '../util/util.dart';
56 import 'backend_ast_to_frontend_ast.dart' as backend2frontend; 58 import 'backend_ast_to_frontend_ast.dart' as backend2frontend;
57 59
58 part 'backend.dart'; 60 part 'backend.dart';
59 part 'renamer.dart'; 61 part 'renamer.dart';
60 part 'placeholder_collector.dart'; 62 part 'placeholder_collector.dart';
61 part 'outputter.dart'; 63 part 'outputter.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698