| 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 part of dart2js; | 5 part of dart2js; |
| 6 | 6 |
| 7 /// A [ConstantEnvironment] provides access for constants compiled for variable | 7 /// A [ConstantEnvironment] provides access for constants compiled for variable |
| 8 /// initializers. | 8 /// initializers. |
| 9 abstract class ConstantEnvironment { | 9 abstract class ConstantEnvironment { |
| 10 /// Returns the constant for the initializer of [element]. | 10 /// Returns the constant for the initializer of [element]. |
| (...skipping 1081 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1092 return new AstConstant( | 1092 return new AstConstant( |
| 1093 element, | 1093 element, |
| 1094 element.initializer != null ? element.initializer : element.node, | 1094 element.initializer != null ? element.initializer : element.node, |
| 1095 constant); | 1095 constant); |
| 1096 } | 1096 } |
| 1097 | 1097 |
| 1098 ConstantValue get value => expression.value; | 1098 ConstantValue get value => expression.value; |
| 1099 | 1099 |
| 1100 String toString() => expression.toString(); | 1100 String toString() => expression.toString(); |
| 1101 } | 1101 } |
| OLD | NEW |