| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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.ir_builder; | 5 library dart2js.ir_builder; |
| 6 | 6 |
| 7 import '../constants/expressions.dart'; | 7 import '../constants/expressions.dart'; |
| 8 import '../constants/values.dart' show PrimitiveConstantValue; | 8 import '../constants/values.dart' show PrimitiveConstantValue; |
| 9 import '../dart_backend/dart_backend.dart' show DartBackend; | 9 import '../dart_backend/dart_backend.dart' show DartBackend; |
| 10 import '../dart_types.dart'; | 10 import '../dart_types.dart'; |
| (...skipping 845 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 856 index = 0; | 856 index = 0; |
| 857 for (int i = 0; i < environment.length; ++i) { | 857 for (int i = 0; i < environment.length; ++i) { |
| 858 if (common[i] == null) { | 858 if (common[i] == null) { |
| 859 environment.index2value[i] = parameters[index++]; | 859 environment.index2value[i] = parameters[index++]; |
| 860 } | 860 } |
| 861 } | 861 } |
| 862 | 862 |
| 863 return join; | 863 return join; |
| 864 } | 864 } |
| 865 } | 865 } |
| OLD | NEW |