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

Side by Side Diff: pkg/compiler/lib/src/common/codegen.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/closure.dart ('k') | pkg/compiler/lib/src/common/resolution.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 dart2js.common.codegen; 5 library dart2js.common.codegen;
6 6
7 import '../closure.dart' show SynthesizedCallMethodElementX;
8 import '../common.dart'; 7 import '../common.dart';
9 import '../compiler.dart' show Compiler; 8 import '../compiler.dart' show Compiler;
10 import '../constants/values.dart' show ConstantValue; 9 import '../constants/values.dart' show ConstantValue;
11 import '../dart_types.dart' show DartType, InterfaceType; 10 import '../dart_types.dart' show DartType, InterfaceType;
12 import '../elements/elements.dart' 11 import '../elements/elements.dart'
13 show 12 show
14 AstElement, 13 AstElement,
15 ClassElement, 14 ClassElement,
16 Element, 15 Element,
17 FunctionElement, 16 FunctionElement,
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 246
248 WorldImpact run(Compiler compiler, CodegenEnqueuer world) { 247 WorldImpact run(Compiler compiler, CodegenEnqueuer world) {
249 if (world.isProcessed(element)) return const WorldImpact(); 248 if (world.isProcessed(element)) return const WorldImpact();
250 249
251 registry = new CodegenRegistry(compiler, element); 250 registry = new CodegenRegistry(compiler, element);
252 return compiler.codegen(this, world); 251 return compiler.codegen(this, world);
253 } 252 }
254 253
255 String toString() => 'CodegenWorkItem(${resolvedAst.element})'; 254 String toString() => 'CodegenWorkItem(${resolvedAst.element})';
256 } 255 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/closure.dart ('k') | pkg/compiler/lib/src/common/resolution.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698