* @param {Map[]} maps
(maps)
| 85 | * @param {Map[]} maps |
| 86 | */ |
| 87 | function processMaps(maps) { |
| 88 | for (let i = 0; i < maps.length; i++) { |
| 89 | const map = maps[i]; |
| 90 | map.forEach(processVariables); |
| 91 | map.clear(); |
| 92 | } |
| 93 | } |
| 94 | |
| 95 | /** |
| 96 | * @param {*} struct |