| Index: pkg/observe/lib/src/compound_binding.dart
|
| diff --git a/pkg/observe/lib/src/compound_binding.dart b/pkg/observe/lib/src/compound_binding.dart
|
| index 94db67a84df3b1e4de661772e80292cdb498740f..56114ec6bcbb5319b4a91ff07fac002ada4bc03e 100644
|
| --- a/pkg/observe/lib/src/compound_binding.dart
|
| +++ b/pkg/observe/lib/src/compound_binding.dart
|
| @@ -65,14 +65,12 @@ class CompoundBinding extends ChangeNotifierBase {
|
| if (combinator != null) _scheduleResolve();
|
| }
|
|
|
| - static const _VALUE = const Symbol('value');
|
| -
|
| get value => _value;
|
|
|
| int get length => _observers.length;
|
|
|
| void set value(newValue) {
|
| - _value = notifyPropertyChange(_VALUE, _value, newValue);
|
| + _value = notifyPropertyChange(#value, _value, newValue);
|
| }
|
|
|
| void bind(name, model, String path) {
|
|
|