| OLD | NEW |
| 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 import 'dart:math' as math; | 5 import 'dart:math' as math; |
| 6 import '../common.dart'; | 6 import '../common.dart'; |
| 7 import '../common/codegen.dart' show CodegenRegistry, CodegenWorkItem; | 7 import '../common/codegen.dart' show CodegenRegistry, CodegenWorkItem; |
| 8 import '../common/tasks.dart' show CompilerTask; | 8 import '../common/tasks.dart' show CompilerTask; |
| 9 import '../compiler.dart' show Compiler; | 9 import '../compiler.dart' show Compiler; |
| 10 import '../constants/constant_system.dart'; | 10 import '../constants/constant_system.dart'; |
| 11 import '../constants/values.dart'; | 11 import '../constants/values.dart'; |
| 12 import '../core_types.dart' show CommonElements; | 12 import '../core_types.dart' show CommonElements; |
| 13 import '../elements/elements.dart' | 13 import '../elements/elements.dart' |
| 14 show | 14 show |
| 15 Entity, | |
| 16 JumpTarget, | 15 JumpTarget, |
| 17 LabelDefinition, | 16 LabelDefinition, |
| 18 Name, | 17 Name, |
| 19 AsyncMarker, | 18 AsyncMarker, |
| 20 ResolvedAst, | 19 ResolvedAst, |
| 21 FunctionElement; | 20 FunctionElement; |
| 22 import '../elements/entities.dart'; | 21 import '../elements/entities.dart'; |
| 23 import '../elements/types.dart'; | 22 import '../elements/types.dart'; |
| 24 import '../io/source_information.dart'; | 23 import '../io/source_information.dart'; |
| 25 import '../js/js.dart' as js; | 24 import '../js/js.dart' as js; |
| (...skipping 3095 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3121 registry.registerStaticUse(new StaticUse.staticInvoke( | 3120 registry.registerStaticUse(new StaticUse.staticInvoke( |
| 3122 helper, new CallStructure.unnamed(argumentCount))); | 3121 helper, new CallStructure.unnamed(argumentCount))); |
| 3123 return backend.emitter.staticFunctionAccess(helper); | 3122 return backend.emitter.staticFunctionAccess(helper); |
| 3124 } | 3123 } |
| 3125 | 3124 |
| 3126 @override | 3125 @override |
| 3127 void visitRef(HRef node) { | 3126 void visitRef(HRef node) { |
| 3128 visit(node.value); | 3127 visit(node.value); |
| 3129 } | 3128 } |
| 3130 } | 3129 } |
| OLD | NEW |