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

Side by Side Diff: pkg/compiler/lib/src/resolution/registry.dart

Issue 2685573002: Replace Backend with JavaScriptBackend. (Closed)
Patch Set: Updated cf. comment Created 3 years, 10 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
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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.resolution.registry; 5 library dart2js.resolution.registry;
6 6
7 import '../common.dart'; 7 import '../common.dart';
8 import '../common/backend_api.dart' 8 import '../common/backend_api.dart' show ForeignResolver, NativeRegistry;
9 show Backend, ForeignResolver, NativeRegistry;
10 import '../common/resolution.dart' show ResolutionImpact, Target; 9 import '../common/resolution.dart' show ResolutionImpact, Target;
11 import '../constants/expressions.dart'; 10 import '../constants/expressions.dart';
12 import '../elements/resolution_types.dart'; 11 import '../elements/resolution_types.dart';
13 import '../diagnostics/source_span.dart'; 12 import '../diagnostics/source_span.dart';
14 import '../elements/elements.dart'; 13 import '../elements/elements.dart';
15 import '../tree/tree.dart'; 14 import '../tree/tree.dart';
16 import '../universe/call_structure.dart' show CallStructure; 15 import '../universe/call_structure.dart' show CallStructure;
17 import '../universe/feature.dart'; 16 import '../universe/feature.dart';
18 import '../universe/selector.dart' show Selector; 17 import '../universe/selector.dart' show Selector;
19 import '../universe/use.dart' show DynamicUse, StaticUse, TypeUse; 18 import '../universe/use.dart' show DynamicUse, StaticUse, TypeUse;
(...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 @override 431 @override
433 void registerInstantiatedType(ResolutionInterfaceType type) { 432 void registerInstantiatedType(ResolutionInterfaceType type) {
434 registry.registerInstantiation(type); 433 registry.registerInstantiation(type);
435 } 434 }
436 435
437 @override 436 @override
438 ResolutionDartType resolveTypeFromString(Node node, String typeName) { 437 ResolutionDartType resolveTypeFromString(Node node, String typeName) {
439 return visitor.resolveTypeFromString(node, typeName); 438 return visitor.resolveTypeFromString(node, typeName);
440 } 439 }
441 } 440 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/parser/diet_parser_task.dart ('k') | pkg/compiler/lib/src/ssa/builder_kernel.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698