Index: pkg/dev_compiler/lib/src/compiler/side_effect_analysis.dart |
diff --git a/pkg/dev_compiler/lib/src/compiler/side_effect_analysis.dart b/pkg/dev_compiler/lib/src/compiler/side_effect_analysis.dart |
index c273228dfe937ad42622abbe8e3e5f6a62cf3570..9f187ee060cdac16ec6d7fc3684ea151b66304ad 100644 |
--- a/pkg/dev_compiler/lib/src/compiler/side_effect_analysis.dart |
+++ b/pkg/dev_compiler/lib/src/compiler/side_effect_analysis.dart |
@@ -15,11 +15,6 @@ import 'package:analyzer/src/dart/ast/ast.dart'; |
/// True is the expression can be evaluated multiple times without causing |
/// code execution. This is true for final fields. This can be true for local |
/// variables, if: |
-/// * they are not assigned within the [context]. |
-/// * they are not assigned in a function closure anywhere. |
-/// True is the expression can be evaluated multiple times without causing |
-/// code execution. This is true for final fields. This can be true for local |
-/// variables, if: |
/// |
/// * they are not assigned within the [context] scope. |
/// * they are not assigned in a function closure anywhere. |