(targets, sources, exclude)
| 3006 | return; |
| 3007 | } |
| 3008 | mergeProperties(targets, sources, exclude) { |
| 3009 | if (sources) { |
| 3010 | for (let name in sources) { |
| 3011 | if (exclude?.includes(name)) |
| 3012 | continue; |
| 3013 | let target = targets[name]; |
| 3014 | let source = sources[name]; |
| 3015 | if (target && source && (typeof target == "object") && (typeof source == "object")) |
| 3016 | this.mergeProperties(target, source); |
| 3017 | else |
| 3018 | targets[name] = source; |
| 3019 | } |
| 3020 | } |
| 3021 | } |
| 3022 | parseBuild(platform) { |
| 3023 | let properties = platform.build; |
| 3024 | if (properties) { |
no outgoing calls
no test coverage detected