(impl: datom.FactImpl)
| 20 | #impl: datom.FactImpl |
| 21 | |
| 22 | private constructor(impl: datom.FactImpl) { |
| 23 | this.#impl = impl; |
| 24 | } |
| 25 | |
| 26 | static fromEdn(edn: string): Fact { |
| 27 | return new Fact(datom.fact_from_edn(edn)); |
nothing calls this directly
no outgoing calls
no test coverage detected