(this: Entity<string, any>, key: Context.Key<I, S>, value: S)
| 251 | return isEntity(that) && this.type === that.type |
| 252 | }, |
| 253 | annotate<I, S>(this: Entity<string, any>, key: Context.Key<I, S>, value: S) { |
| 254 | return fromRpcGroup(this.type, this.protocol.annotate(key, value)) |
| 255 | }, |
| 256 | annotateRpcs<I, S>(this: Entity<string, any>, key: Context.Key<I, S>, value: S) { |
| 257 | return fromRpcGroup(this.type, this.protocol.annotateRpcs(key, value)) |
| 258 | }, |
nothing calls this directly
no test coverage detected