summaryrefslogtreecommitdiff
path: root/context.go
diff options
context:
space:
mode:
authorFrancis Lavoie <lavofr@gmail.com>2024-04-17 14:19:14 -0400
committerGitHub <noreply@github.com>2024-04-17 12:19:14 -0600
commit9cd472c0313b01e71d1f142769c3653058d75c86 (patch)
tree2393ff4a9a2280e35acfacf4109ca99075c26a43 /context.go
parente0daa39cd3373d26dcf78ae0d30ac24d1df5dd57 (diff)
caddyfile: Populate regexp matcher names by default (#6145)
* caddyfile: Populate regexp matcher names by default * Some lint cleanup that my VSCode complained about * Pass down matcher name through expression matcher * Compat with #6113: fix adapt test, set both styles in replacer
Diffstat (limited to 'context.go')
-rw-r--r--context.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/context.go b/context.go
index d73af770..4307dda8 100644
--- a/context.go
+++ b/context.go
@@ -556,3 +556,15 @@ func (ctx Context) Module() Module {
}
return ctx.ancestry[len(ctx.ancestry)-1]
}
+
+// WithValue returns a new context with the given key-value pair.
+func (ctx *Context) WithValue(key, value any) Context {
+ return Context{
+ Context: context.WithValue(ctx.Context, key, value),
+ moduleInstances: ctx.moduleInstances,
+ cfg: ctx.cfg,
+ ancestry: ctx.ancestry,
+ cleanupFuncs: ctx.cleanupFuncs,
+ exitFuncs: ctx.exitFuncs,
+ }
+}