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 1392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1403 index = 0; | 1403 index = 0; |
1404 for (int i = 0; i < environment.length; ++i) { | 1404 for (int i = 0; i < environment.length; ++i) { |
1405 if (common[i] == null) { | 1405 if (common[i] == null) { |
1406 environment.index2value[i] = parameters[index++]; | 1406 environment.index2value[i] = parameters[index++]; |
1407 } | 1407 } |
1408 } | 1408 } |
1409 | 1409 |
1410 return join; | 1410 return join; |
1411 } | 1411 } |
1412 } | 1412 } |
OLD | NEW |