(this: Entity<string, any>, tag: Context.Tag<I, S>, value: S)
| 217 | return isEntity(that) && this.type === that.type |
| 218 | }, |
| 219 | annotate<I, S>(this: Entity<string, any>, tag: Context.Tag<I, S>, value: S) { |
| 220 | return fromRpcGroup(this.type, this.protocol.annotate(tag, value)) |
| 221 | }, |
| 222 | annotateRpcs<I, S>(this: Entity<string, any>, tag: Context.Tag<I, S>, value: S) { |
| 223 | return fromRpcGroup(this.type, this.protocol.annotateRpcs(tag, value)) |
| 224 | }, |
nothing calls this directly
no test coverage detected