| Index: lib/src/codegen/side_effect_analysis.dart
|
| diff --git a/lib/src/codegen/side_effect_analysis.dart b/lib/src/codegen/side_effect_analysis.dart
|
| index dd72d0167623d6ec1586e42ff59602d8f40bcd8c..f7a0e25bd0c755613955dc027dae731643588027 100644
|
| --- a/lib/src/codegen/side_effect_analysis.dart
|
| +++ b/lib/src/codegen/side_effect_analysis.dart
|
| @@ -98,8 +98,9 @@ class ConstFieldVisitor {
|
| ConstFieldVisitor(TypeProvider types, CompilationUnit unit)
|
| // TODO(jmesserly): support -D variables on the command line
|
| : _constantVisitor = new ConstantVisitor(
|
| - new ConstantEvaluationEngine(types, new DeclaredVariables()),
|
| - new ErrorReporter(new RecordingErrorListener(), unit.element.source));
|
| + new ConstantEvaluationEngine(types, new DeclaredVariables()),
|
| + new ErrorReporter(
|
| + new RecordingErrorListener(), unit.element.source));
|
|
|
| // TODO(jmesserly): this is used to determine if the field initialization is
|
| // side effect free. We should make the check more general, as things like
|
|
|