| Index: dart/sdk/lib/_internal/compiler/implementation/compile_time_constants.dart
|
| diff --git a/dart/sdk/lib/_internal/compiler/implementation/compile_time_constants.dart b/dart/sdk/lib/_internal/compiler/implementation/compile_time_constants.dart
|
| index fd1163e3ce3f3902c1e07d4318ab912d9641210a..628ee9c38dfaa7b21039e9618ff7f6d7922f5208 100644
|
| --- a/dart/sdk/lib/_internal/compiler/implementation/compile_time_constants.dart
|
| +++ b/dart/sdk/lib/_internal/compiler/implementation/compile_time_constants.dart
|
| @@ -189,19 +189,6 @@ class ConstantHandler extends CompilerTask {
|
| });
|
| }
|
|
|
| - /**
|
| - * Returns an [Iterable] of static const fields that need to be initialized.
|
| - * The fields must be evaluated in order since they might depend on each
|
| - * other.
|
| - */
|
| - Iterable<VariableElement> getStaticFinalFieldsForEmission() {
|
| - return initialVariableValues.keys.where((element) {
|
| - return element.kind == ElementKind.FIELD
|
| - && !element.isInstanceMember()
|
| - && element.modifiers.isFinal();
|
| - });
|
| - }
|
| -
|
| List<VariableElement> getLazilyInitializedFieldsForEmission() {
|
| return new List<VariableElement>.from(lazyStatics);
|
| }
|
|
|