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

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

Issue 2221893003: pkg/compiler: fix imports (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 4 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/util/util_implementation.dart ('k') | no next file » | 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 dart2js.world; 5 library dart2js.world;
6 6
7 import 'closure.dart' show SynthesizedCallMethodElementX; 7 import 'closure.dart' show SynthesizedCallMethodElementX;
8 import 'common/backend_api.dart' show Backend;
8 import 'common.dart'; 9 import 'common.dart';
9 import 'common/backend_api.dart' show Backend;
10 import 'compiler.dart' show Compiler; 10 import 'compiler.dart' show Compiler;
11 import 'core_types.dart' show CoreClasses; 11 import 'core_types.dart' show CoreClasses;
12 import 'dart_types.dart'; 12 import 'dart_types.dart';
13 import 'elements/elements.dart' 13 import 'elements/elements.dart'
14 show 14 show
15 ClassElement, 15 ClassElement,
16 Element, 16 Element,
17 FunctionElement, 17 FunctionElement,
18 MixinApplicationElement, 18 MixinApplicationElement,
19 TypedefElement, 19 TypedefElement,
(...skipping 806 matching lines...) Expand 10 before | Expand all | Expand 10 after
826 // function expressions's element. 826 // function expressions's element.
827 // TODO(herhut): Generate classes for function expressions earlier. 827 // TODO(herhut): Generate classes for function expressions earlier.
828 if (element is SynthesizedCallMethodElementX) { 828 if (element is SynthesizedCallMethodElementX) {
829 return getMightBePassedToApply(element.expression); 829 return getMightBePassedToApply(element.expression);
830 } 830 }
831 return functionsThatMightBePassedToApply.contains(element); 831 return functionsThatMightBePassedToApply.contains(element);
832 } 832 }
833 833
834 bool get hasClosedWorldAssumption => !compiler.options.hasIncrementalSupport; 834 bool get hasClosedWorldAssumption => !compiler.options.hasIncrementalSupport;
835 } 835 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/util/util_implementation.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698