| Index: pkg/analysis_server/lib/src/protocol.dart
|
| diff --git a/pkg/analysis_server/lib/src/protocol.dart b/pkg/analysis_server/lib/src/protocol.dart
|
| index 212c1a5bdd6b13a5a3a6ded90de45a49c3951ffd..196647465a43a6fefa179529fc354ea78e5e40f3 100644
|
| --- a/pkg/analysis_server/lib/src/protocol.dart
|
| +++ b/pkg/analysis_server/lib/src/protocol.dart
|
| @@ -293,6 +293,12 @@ SourceFileEdit _getChangeFileEdit(SourceChange change, String file) {
|
| * list elements.
|
| */
|
| bool _listEqual(List listA, List listB, bool itemEqual(a, b)) {
|
| + if (listA == null) {
|
| + return listB == null;
|
| + }
|
| + if (listB == null) {
|
| + return false;
|
| + }
|
| if (listA.length != listB.length) {
|
| return false;
|
| }
|
|
|