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

Side by Side Diff: pkg/compiler/lib/src/native/behavior.dart

Issue 2935663002: Remove Compiler.commonElements (Closed)
Patch Set: Remove Compiler._commonElements Created 3 years, 6 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/mirrors_used.dart ('k') | pkg/compiler/lib/src/native/resolver.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) 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 import '../common.dart'; 5 import '../common.dart';
6 import '../common/backend_api.dart' show ForeignResolver; 6 import '../common/backend_api.dart' show ForeignResolver;
7 import '../common/resolution.dart' show ParsingContext, Resolution; 7 import '../common/resolution.dart' show ParsingContext, Resolution;
8 import '../compiler.dart' show Compiler; 8 import '../compiler.dart' show Compiler;
9 import '../constants/values.dart'; 9 import '../constants/values.dart';
10 import '../common_elements.dart' show CommonElements; 10 import '../common_elements.dart' show CommonElements;
(...skipping 1022 matching lines...) Expand 10 before | Expand all | Expand 10 after
1033 } 1033 }
1034 } 1034 }
1035 1035
1036 class ResolverBehaviorBuilder extends BehaviorBuilder { 1036 class ResolverBehaviorBuilder extends BehaviorBuilder {
1037 final Compiler compiler; 1037 final Compiler compiler;
1038 final NativeBasicData nativeBasicData; 1038 final NativeBasicData nativeBasicData;
1039 1039
1040 ResolverBehaviorBuilder(this.compiler, this.nativeBasicData); 1040 ResolverBehaviorBuilder(this.compiler, this.nativeBasicData);
1041 1041
1042 @override 1042 @override
1043 CommonElements get commonElements => compiler.commonElements; 1043 CommonElements get commonElements => resolution.commonElements;
1044 1044
1045 @override 1045 @override
1046 bool get trustJSInteropTypeAnnotations => 1046 bool get trustJSInteropTypeAnnotations =>
1047 compiler.options.trustJSInteropTypeAnnotations; 1047 compiler.options.trustJSInteropTypeAnnotations;
1048 1048
1049 @override 1049 @override
1050 DiagnosticReporter get reporter => compiler.reporter; 1050 DiagnosticReporter get reporter => compiler.reporter;
1051 1051
1052 @override 1052 @override
1053 Resolution get resolution => compiler.resolution; 1053 Resolution get resolution => compiler.resolution;
1054 } 1054 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/mirrors_used.dart ('k') | pkg/compiler/lib/src/native/resolver.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698