()
| 13 | private readonly _config: Config; |
| 14 | private readonly _contexts: Contexts; |
| 15 | constructor() { |
| 16 | // 缓存所有配置项 |
| 17 | this._config = new Config(); |
| 18 | // 缓存所有作用域 |
| 19 | this._contexts = new Contexts(); |
| 20 | } |
| 21 | |
| 22 | // 深度克隆配置项 |
| 23 | private _cloneContribute(confg: Config) { |
nothing calls this directly
no outgoing calls
no test coverage detected