(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 | }, |
| 259 | annotateMerge<S>(this: Entity<string, any>, annotations: Context.Context<S>) { |
| 260 | return fromRpcGroup(this.type, this.protocol.annotateMerge(annotations)) |
| 261 | }, |
nothing calls this directly
no test coverage detected