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

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

Issue 2667473003: Move Entity and Local to entities.dart (Closed)
Patch Set: 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) 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 dart2js.world; 5 library dart2js.world;
6 6
7 import 'closure.dart' show ClosureClassElement, SynthesizedCallMethodElementX; 7 import 'closure.dart' show ClosureClassElement, SynthesizedCallMethodElementX;
8 import 'common/backend_api.dart' show BackendClasses; 8 import 'common/backend_api.dart' show BackendClasses;
9 import 'common.dart'; 9 import 'common.dart';
10 import 'constants/constant_system.dart'; 10 import 'constants/constant_system.dart';
11 import 'core_types.dart' show CommonElements; 11 import 'core_types.dart' show CommonElements;
12 import 'elements/entities.dart'; 12 import 'elements/entities.dart';
13 import 'elements/elements.dart' 13 import 'elements/elements.dart'
14 show 14 show
15 ClassElement, 15 ClassElement,
16 Element, 16 Element,
17 Entity,
18 FunctionElement, 17 FunctionElement,
19 MemberElement, 18 MemberElement,
20 MixinApplicationElement, 19 MixinApplicationElement,
21 TypedefElement, 20 TypedefElement,
22 FieldElement; 21 FieldElement;
23 import 'elements/resolution_types.dart'; 22 import 'elements/resolution_types.dart';
24 import 'js_backend/backend.dart' show JavaScriptBackend; 23 import 'js_backend/backend.dart' show JavaScriptBackend;
25 import 'ordered_typeset.dart'; 24 import 'ordered_typeset.dart';
26 import 'types/masks.dart' show CommonMasks, FlatTypeMask, TypeMask; 25 import 'types/masks.dart' show CommonMasks, FlatTypeMask, TypeMask;
27 import 'universe/class_set.dart'; 26 import 'universe/class_set.dart';
(...skipping 1156 matching lines...) Expand 10 before | Expand all | Expand 10 after
1184 return getMightBePassedToApply(element.expression); 1183 return getMightBePassedToApply(element.expression);
1185 } 1184 }
1186 return functionsThatMightBePassedToApply.contains(element); 1185 return functionsThatMightBePassedToApply.contains(element);
1187 } 1186 }
1188 1187
1189 @override 1188 @override
1190 bool getCurrentlyKnownMightBePassedToApply(Element element) { 1189 bool getCurrentlyKnownMightBePassedToApply(Element element) {
1191 return getMightBePassedToApply(element); 1190 return getMightBePassedToApply(element);
1192 } 1191 }
1193 } 1192 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/universe/use.dart ('k') | tests/compiler/dart2js/serialization/model_test_helper.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698