package experimental

import (
	

	
)

// WithCompilationWorkers sets the desired number of compilation workers.
func ( context.Context,  int) context.Context {
	return context.WithValue(, expctxkeys.CompilationWorkers{}, )
}

// GetCompilationWorkers returns the desired number of compilation workers.
// The minimum value returned is 1.
func ( context.Context) int {
	,  := .Value(expctxkeys.CompilationWorkers{}).(int)
	return max(, 1)
}