constructor(
initialValue: T,
private readonly _equalityComparator: EqualityComparer<T>,
debugLocation: DebugLocation
) {
super(debugLocation);
this._value = initialValue;
getLogger()?.handleObservableUpdated(this, { hadValue: false, newValue: initialValue, change: undefined, didChange: true, oldValue: undefined });
}
public override get(): T {
return this._value;