| Index: pkg/observe/lib/src/list_path_observer.dart
|
| diff --git a/pkg/observe/lib/src/list_path_observer.dart b/pkg/observe/lib/src/list_path_observer.dart
|
| index 5b83a25b58cf99494a59be4ea81664cbc5c62731..9b8118000614c995ff567ce594c8b28e51e7159d 100644
|
| --- a/pkg/observe/lib/src/list_path_observer.dart
|
| +++ b/pkg/observe/lib/src/list_path_observer.dart
|
| @@ -4,8 +4,6 @@
|
|
|
| part of observe;
|
|
|
| -const _VALUE = const Symbol('value');
|
| -
|
| // Inspired by ArrayReduction at:
|
| // https://raw.github.com/rafaelw/ChangeSummary/master/util/array_reduction.js
|
| // The main difference is we support anything on the rich Dart Iterable API.
|
| @@ -49,7 +47,7 @@ class ListPathObserver<E, P> extends ChangeNotifierBase {
|
| void _reduce() {
|
| _scheduled = false;
|
| _value = _observers.map((o) => o.value);
|
| - notifyChange(new PropertyChangeRecord(_VALUE));
|
| + notifyChange(new PropertyChangeRecord(#value));
|
| }
|
|
|
| void _scheduleReduce(_) {
|
|
|