(this: Entity<string, any>, key: Context.Key<I, S>, value: S)
| 246 | [TypeId]: TypeId, |
| 247 | [Hash.symbol](this: Entity<string, any>): number { |
| 248 | return Hash.structure({ type: this.type }) |
| 249 | }, |
| 250 | [Equal.symbol](this: Entity<string, any>, that: Equal.Equal): boolean { |
| 251 | return isEntity(that) && this.type === that.type |
| 252 | }, |
| 253 | annotate<I, S>(this: Entity<string, any>, key: Context.Key<I, S>, value: S) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…