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

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

Issue 1383503002: Add Resolution and Parsing interfaces for computeType, ensureResolved and parseNode. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Add TODOs. Created 5 years, 2 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
« no previous file with comments | « pkg/compiler/lib/src/dart_backend/backend.dart ('k') | pkg/compiler/lib/src/dart_types.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 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
11 CompilerOutputProvider; 11 CompilerOutputProvider;
12 import '../common/backend_api.dart' show 12 import '../common/backend_api.dart' show
13 Backend; 13 Backend;
14 import '../common/codegen.dart' show 14 import '../common/codegen.dart' show
15 CodegenWorkItem; 15 CodegenWorkItem;
16 import '../common/names.dart' show 16 import '../common/names.dart' show
17 Selectors, 17 Selectors,
18 Uris; 18 Uris;
19 import '../common/registry.dart' show 19 import '../common/registry.dart' show
20 Registry; 20 Registry;
21 import '../common/resolution.dart' show 21 import '../common/resolution.dart' show
22 Resolution,
22 ResolutionCallbacks; 23 ResolutionCallbacks;
23 import '../common/tasks.dart' show 24 import '../common/tasks.dart' show
24 CompilerTask; 25 CompilerTask;
25 import '../compiler.dart' show 26 import '../compiler.dart' show
26 Compiler; 27 Compiler;
27 import '../compile_time_constants.dart'; 28 import '../compile_time_constants.dart';
28 import '../constants/constant_system.dart'; 29 import '../constants/constant_system.dart';
29 import '../constants/expressions.dart'; 30 import '../constants/expressions.dart';
30 import '../constants/values.dart'; 31 import '../constants/values.dart';
31 import '../dart_types.dart'; 32 import '../dart_types.dart';
(...skipping 24 matching lines...) Expand all
56 Selector; 57 Selector;
57 import '../universe/universe.dart' show 58 import '../universe/universe.dart' show
58 UniverseSelector; 59 UniverseSelector;
59 import '../util/util.dart'; 60 import '../util/util.dart';
60 import 'backend_ast_to_frontend_ast.dart' as backend2frontend; 61 import 'backend_ast_to_frontend_ast.dart' as backend2frontend;
61 62
62 part 'backend.dart'; 63 part 'backend.dart';
63 part 'renamer.dart'; 64 part 'renamer.dart';
64 part 'placeholder_collector.dart'; 65 part 'placeholder_collector.dart';
65 part 'outputter.dart'; 66 part 'outputter.dart';
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/dart_backend/backend.dart ('k') | pkg/compiler/lib/src/dart_types.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698