(this: Any, tag: Context.Key<I, S>, value: S)
| 1063 | return clone(this, { needsApproval }) |
| 1064 | }, |
| 1065 | annotate<I, S>(this: Any, tag: Context.Key<I, S>, value: S) { |
| 1066 | return clone(this, { annotations: Context.add(this.annotations, tag, value) }) |
| 1067 | }, |
| 1068 | annotateMerge<I>(this: Any, context: Context.Context<I>) { |
| 1069 | return clone(this, { annotations: Context.merge(this.annotations, context) }) |
| 1070 | } |