()
| 181 | } |
| 182 | |
| 183 | func (o *Options) clone() *Options { |
| 184 | return &Options{ |
| 185 | SkipValidation: o.SkipValidation, |
| 186 | SkipInterpolation: o.SkipInterpolation, |
| 187 | SkipNormalization: o.SkipNormalization, |
| 188 | ResolvePaths: o.ResolvePaths, |
| 189 | ConvertWindowsPaths: o.ConvertWindowsPaths, |
| 190 | SkipConsistencyCheck: o.SkipConsistencyCheck, |
| 191 | SkipExtends: o.SkipExtends, |
| 192 | SkipInclude: o.SkipInclude, |
| 193 | Interpolate: o.Interpolate, |
| 194 | discardEnvFiles: o.discardEnvFiles, |
| 195 | projectName: o.projectName, |
| 196 | projectNameImperativelySet: o.projectNameImperativelySet, |
| 197 | Profiles: o.Profiles, |
| 198 | SelectedServices: o.SelectedServices, |
| 199 | PruneUnnecessaryResources: o.PruneUnnecessaryResources, |
| 200 | ResourceLoaders: o.ResourceLoaders, |
| 201 | KnownExtensions: o.KnownExtensions, |
| 202 | Listeners: o.Listeners, |
| 203 | } |
| 204 | } |
| 205 | |
| 206 | func (o *Options) SetProjectName(name string, imperativelySet bool) { |
| 207 | o.projectName = name |
no outgoing calls
no test coverage detected