(private defaultSpecDelegate: ZoneSpec | null = null)
| 54 | } |
| 55 | |
| 56 | constructor(private defaultSpecDelegate: ZoneSpec | null = null) { |
| 57 | this.setDelegate(defaultSpecDelegate); |
| 58 | } |
| 59 | |
| 60 | setDelegate(delegateSpec: ZoneSpec | null) { |
| 61 | const isNewDelegate = this._delegateSpec !== delegateSpec; |
nothing calls this directly
no test coverage detected