(this: Lifetime<any>)
| 950 | }, |
| 951 | |
| 952 | self<A>(this: Lifetime<any>): Option.Option<A> { |
| 953 | if (this.disposed) return Option.none() |
| 954 | return this.node.valueOption() as any |
| 955 | }, |
| 956 | |
| 957 | refresh<A>(this: Lifetime<any>, atom: Atom.Atom<A>): void { |
| 958 | if (this.disposed) return |
no test coverage detected