(
sourceList: Source[],
upstreamSignList: string[]
)
| 161 | } |
| 162 | |
| 163 | private _setLocalSource( |
| 164 | sourceList: Source[], |
| 165 | upstreamSignList: string[] |
| 166 | ): void { |
| 167 | this._sourceList = sourceList; |
| 168 | this._upstreamSignList = upstreamSignList; |
| 169 | this._versionSignBase++; |
| 170 | if (this._versionSignBase > 9e10) { |
| 171 | this._versionSignBase = 0; |
| 172 | } |
| 173 | } |
| 174 | |
| 175 | /** |
| 176 | * For detecting whether the upstream source is dirty, so that |
no outgoing calls
no test coverage detected